Merge change I808651dc into eclair-mr2
* changes:
bug #2180646: make comparing "404-04" and "40404" return true in PhoneNumberUtils.compare().
diff --git a/Android.mk b/Android.mk
index d153ce6..5008ad7 100644
--- a/Android.mk
+++ b/Android.mk
@@ -345,7 +345,7 @@
-since ./frameworks/base/api/2.xml 2 \
-since ./frameworks/base/api/3.xml 3 \
-since ./frameworks/base/api/4.xml 4 \
- -since ./frameworks/base/api/current.xml Eclair \
+ -since ./frameworks/base/api/5.xml 5 \
-error 1 -error 2 -warning 3 -error 4 -error 6 -error 8 \
-overview $(LOCAL_PATH)/core/java/overview.html
@@ -382,10 +382,20 @@
# flag to build offline docs for a preview release
framework_docs_SDK_PREVIEW:=0
+## Latest ADT version identifiers, for reference from published docs
+framework_docs_ADT_VERSION:=0.9.4
+framework_docs_ADT_DOWNLOAD:=ADT-0.9.4.zip
+framework_docs_ADT_BYTES:=3367536
+framework_docs_ADT_CHECKSUM:=4cdecd72b3e28022d8a55891f13e7d43
+
framework_docs_LOCAL_DROIDDOC_OPTIONS += \
-hdf sdk.version $(framework_docs_SDK_VERSION) \
-hdf sdk.rel.id $(framework_docs_SDK_REL_ID) \
- -hdf sdk.current $(framework_docs_SDK_CURRENT_DIR)
+ -hdf sdk.current $(framework_docs_SDK_CURRENT_DIR) \
+ -hdf adt.zip.version $(framework_docs_ADT_VERSION) \
+ -hdf adt.zip.download $(framework_docs_ADT_DOWNLOAD) \
+ -hdf adt.zip.bytes $(framework_docs_ADT_BYTES) \
+ -hdf adt.zip.checksum $(framework_docs_ADT_CHECKSUM)
# ==== the api stubs and current.xml ===========================
include $(CLEAR_VARS)
diff --git a/api/current.xml b/api/current.xml
index 99436bd..4cd9718 100644
--- a/api/current.xml
+++ b/api/current.xml
@@ -24659,6 +24659,29 @@
visibility="public"
>
</method>
+<method name="sendWallpaperCommand"
+ return="void"
+ abstract="false"
+ native="false"
+ synchronized="false"
+ static="false"
+ final="false"
+ deprecated="not deprecated"
+ visibility="public"
+>
+<parameter name="windowToken" type="android.os.IBinder">
+</parameter>
+<parameter name="action" type="java.lang.String">
+</parameter>
+<parameter name="x" type="int">
+</parameter>
+<parameter name="y" type="int">
+</parameter>
+<parameter name="z" type="int">
+</parameter>
+<parameter name="extras" type="android.os.Bundle">
+</parameter>
+</method>
<method name="setBitmap"
return="void"
abstract="false"
diff --git a/cmds/stagefright/record.cpp b/cmds/stagefright/record.cpp
index 323d448..176dab0 100644
--- a/cmds/stagefright/record.cpp
+++ b/cmds/stagefright/record.cpp
@@ -23,7 +23,7 @@
#include <media/stagefright/MediaDebug.h>
#include <media/stagefright/MediaDefs.h>
#include <media/stagefright/MetaData.h>
-#include <media/stagefright/MPEG4Extractor.h>
+#include <media/stagefright/MediaExtractor.h>
#include <media/stagefright/MPEG4Writer.h>
#include <media/stagefright/MmapSource.h>
#include <media/stagefright/OMXClient.h>
@@ -88,8 +88,8 @@
sp<MediaSource> createSource(const char *filename) {
sp<MediaSource> source;
- sp<MPEG4Extractor> extractor =
- new MPEG4Extractor(new MmapSource(filename));
+ sp<MediaExtractor> extractor =
+ MediaExtractor::Create(new MmapSource(filename));
size_t num_tracks = extractor->countTracks();
diff --git a/core/java/android/accounts/AbstractAccountAuthenticator.java b/core/java/android/accounts/AbstractAccountAuthenticator.java
index 456cf98..ee6d748 100644
--- a/core/java/android/accounts/AbstractAccountAuthenticator.java
+++ b/core/java/android/accounts/AbstractAccountAuthenticator.java
@@ -26,9 +26,78 @@
import android.Manifest;
/**
- * Base class for creating AccountAuthenticators. This implements the IAccountAuthenticator
- * binder interface and also provides helper libraries to simplify the creation of
- * AccountAuthenticators.
+ * Abstract base class for creating AccountAuthenticators.
+ * In order to be an authenticator one must extend this class, provider implementations for the
+ * abstract methods and write a service that returns the result of {@link #getIBinder()}
+ * in the service's {@link android.app.Service#onBind(android.content.Intent)} when invoked
+ * with an intent with action {@link AccountManager#ACTION_AUTHENTICATOR_INTENT}. This service
+ * must specify the following intent filter and metadata tags in its AndroidManifest.xml file
+ * <pre>
+ * <intent-filter>
+ * <action android:name="android.accounts.AccountAuthenticator" />
+ * </intent-filter>
+ * <meta-data android:name="android.accounts.AccountAuthenticator"
+ * android:resource="@xml/authenticator" />
+ * </pre>
+ * The <code>android:resource</code> attribute must point to a resource that looks like:
+ * <pre>
+ * <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
+ * android:accountType="typeOfAuthenticator"
+ * android:icon="@drawable/icon"
+ * android:smallIcon="@drawable/miniIcon"
+ * android:label="@string/label"
+ * android:accountPreferences="@xml/account_preferences"
+ * />
+ * </pre>
+ * Replace the icons and labels with your own resources. The <code>android:accountType</code>
+ * attribute must be a string that uniquely identifies your authenticator and will be the same
+ * string that user will use when making calls on the {@link AccountManager} and it also
+ * corresponds to {@link Account#type} for your accounts. One user of the android:icon is the
+ * "Account & Sync" settings page and one user of the android:smallIcon is the Contact Application's
+ * tab panels.
+ * <p>
+ * The preferences attribute points to an PreferenceScreen xml hierarchy that contains
+ * a list of PreferenceScreens that can be invoked to manage the authenticator. An example is:
+ * <pre>
+ * <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
+ * <PreferenceCategory android:title="@string/title_fmt" />
+ * <PreferenceScreen
+ * android:key="key1"
+ * android:title="@string/key1_action"
+ * android:summary="@string/key1_summary">
+ * <intent
+ * android:action="key1.ACTION"
+ * android:targetPackage="key1.package"
+ * android:targetClass="key1.class" />
+ * </PreferenceScreen>
+ * </PreferenceScreen>
+ * </pre>
+ *
+ * <p>
+ * The standard pattern for implementing any of the abstract methods is the following:
+ * <ul>
+ * <li> If the supplied arguments are enough for the authenticator to fully satisfy the request
+ * then it will do so and return a {@link Bundle} that contains the results.
+ * <li> If the authenticator needs information from the user to satisfy the request then it
+ * will create an {@link Intent} to an activity that will prompt the user for the information
+ * and then carry out the request. This intent must be returned in a Bundle as key
+ * {@link AccountManager#KEY_INTENT}.
+ * <p>
+ * The activity needs to return the final result when it is complete so the Intent should contain
+ * the {@link AccountAuthenticatorResponse} as {@link AccountManager#KEY_ACCOUNT_MANAGER_RESPONSE}.
+ * The activity must then call {@link AccountAuthenticatorResponse#onResult} or
+ * {@link AccountAuthenticatorResponse#onError} when it is complete.
+ * </ul>
+ * <p>
+ * The following descriptions of each of the abstract authenticator methods will not describe the
+ * possible asynchronous nature of the request handling and will instead just describe the input
+ * parameters and the expected result.
+ * <p>
+ * When writing an activity to satisfy these requests one must pass in the AccountManagerResponse
+ * and return the result via that response when the activity finishes (or whenever else the
+ * activity author deems it is the correct time to respond).
+ * The {@link AccountAuthenticatorActivity} handles this, so one may wish to extend that when
+ * writing activities to handle these requests.
*/
public abstract class AbstractAccountAuthenticator {
private final Context mContext;
@@ -239,19 +308,135 @@
*/
public abstract Bundle editProperties(AccountAuthenticatorResponse response,
String accountType);
+
+ /**
+ * Adds an account of the specified accountType.
+ * @param response to send the result back to the AccountManager, will never be null
+ * @param accountType the type of account to add, will never be null
+ * @param authTokenType the type of auth token to retrieve after adding the account, may be null
+ * @param requiredFeatures a String array of authenticator-specific features that the added
+ * account must support, may be null
+ * @param options a Bundle of authenticator-specific options, may be null
+ * @return a Bundle result or null if the result is to be returned via the response. The result
+ * will contain either:
+ * <ul>
+ * <li> {@link AccountManager#KEY_INTENT}, or
+ * <li> {@link AccountManager#KEY_ACCOUNT_NAME} and {@link AccountManager#KEY_ACCOUNT_TYPE} of
+ * the account that was added, plus {@link AccountManager#KEY_AUTHTOKEN} if an authTokenType
+ * was supplied, or
+ * <li> {@link AccountManager#KEY_ERROR_CODE} and {@link AccountManager#KEY_ERROR_MESSAGE} to
+ * indicate an error
+ * </ul>
+ * @throws NetworkErrorException if the authenticator could not honor the request due to a
+ * network error
+ */
public abstract Bundle addAccount(AccountAuthenticatorResponse response, String accountType,
String authTokenType, String[] requiredFeatures, Bundle options)
throws NetworkErrorException;
+
+ /**
+ * Checks that the user knows the credentials of an account.
+ * @param response to send the result back to the AccountManager, will never be null
+ * @param account the account whose credentials are to be checked, will never be null
+ * @param options a Bundle of authenticator-specific options, may be null
+ * @return a Bundle result or null if the result is to be returned via the response. The result
+ * will contain either:
+ * <ul>
+ * <li> {@link AccountManager#KEY_INTENT}, or
+ * <li> {@link AccountManager#KEY_BOOLEAN_RESULT}, true if the check succeeded, false otherwise
+ * <li> {@link AccountManager#KEY_ERROR_CODE} and {@link AccountManager#KEY_ERROR_MESSAGE} to
+ * indicate an error
+ * </ul>
+ */
public abstract Bundle confirmCredentials(AccountAuthenticatorResponse response,
Account account, Bundle options);
+
+ /**
+ * Gets the authtoken for an account.
+ * @param response to send the result back to the AccountManager, will never be null
+ * @param account the account whose credentials are to be retrieved, will never be null
+ * @param authTokenType the type of auth token to retrieve, will never be null
+ * @param loginOptions a Bundle of authenticator-specific options, may be null
+ * @return a Bundle result or null if the result is to be returned via the response. The result
+ * will contain either:
+ * <ul>
+ * <li> {@link AccountManager#KEY_INTENT}, or
+ * <li> {@link AccountManager#KEY_ACCOUNT_NAME}, {@link AccountManager#KEY_ACCOUNT_TYPE},
+ * and {@link AccountManager#KEY_AUTHTOKEN}, or
+ * <li> {@link AccountManager#KEY_ERROR_CODE} and {@link AccountManager#KEY_ERROR_MESSAGE} to
+ * indicate an error
+ * </ul>
+ * @throws NetworkErrorException if the authenticator could not honor the request due to a
+ * network error
+ */
public abstract Bundle getAuthToken(AccountAuthenticatorResponse response,
Account account, String authTokenType, Bundle loginOptions)
throws NetworkErrorException;
+
+ /**
+ * Ask the authenticator for a localized label for the given authTokenType.
+ * @param authTokenType the authTokenType whose label is to be returned, will never be null
+ * @return the localized label of the auth token type, may be null if the type isn't known
+ */
public abstract String getAuthTokenLabel(String authTokenType);
+
+ /**
+ * Update the locally stored credentials for an account.
+ * @param response to send the result back to the AccountManager, will never be null
+ * @param account the account whose credentials are to be updated, will never be null
+ * @param authTokenType the type of auth token to retrieve after updating the credentials,
+ * may be null
+ * @param loginOptions a Bundle of authenticator-specific options, may be null
+ * @return a Bundle result or null if the result is to be returned via the response. The result
+ * will contain either:
+ * <ul>
+ * <li> {@link AccountManager#KEY_INTENT}, or
+ * <li> {@link AccountManager#KEY_ACCOUNT_NAME} and {@link AccountManager#KEY_ACCOUNT_TYPE} of
+ * the account that was added, plus {@link AccountManager#KEY_AUTHTOKEN} if an authTokenType
+ * was supplied, or
+ * <li> {@link AccountManager#KEY_ERROR_CODE} and {@link AccountManager#KEY_ERROR_MESSAGE} to
+ * indicate an error
+ * </ul>
+ */
public abstract Bundle updateCredentials(AccountAuthenticatorResponse response,
Account account, String authTokenType, Bundle loginOptions);
+
+ /**
+ * Checks if the account supports all the specified authenticator specific features.
+ * @param response to send the result back to the AccountManager, will never be null
+ * @param account the account to check, will never be null
+ * @param features an array of features to check, will never be null
+ * @return a Bundle result or null if the result is to be returned via the response. The result
+ * will contain either:
+ * <ul>
+ * <li> {@link AccountManager#KEY_INTENT}, or
+ * <li> {@link AccountManager#KEY_BOOLEAN_RESULT}, true if the account has all the features,
+ * false otherwise
+ * <li> {@link AccountManager#KEY_ERROR_CODE} and {@link AccountManager#KEY_ERROR_MESSAGE} to
+ * indicate an error
+ * </ul>
+ * @throws NetworkErrorException if the authenticator could not honor the request due to a
+ * network error
+ */
public abstract Bundle hasFeatures(AccountAuthenticatorResponse response,
Account account, String[] features) throws NetworkErrorException;
+
+ /**
+ * Checks if the removal of this account is allowed.
+ * @param response to send the result back to the AccountManager, will never be null
+ * @param account the account to check, will never be null
+ * @return a Bundle result or null if the result is to be returned via the response. The result
+ * will contain either:
+ * <ul>
+ * <li> {@link AccountManager#KEY_INTENT}, or
+ * <li> {@link AccountManager#KEY_BOOLEAN_RESULT}, true if the removal of the account is
+ * allowed, false otherwise
+ * <li> {@link AccountManager#KEY_ERROR_CODE} and {@link AccountManager#KEY_ERROR_MESSAGE} to
+ * indicate an error
+ * </ul>
+ * @throws NetworkErrorException if the authenticator could not honor the request due to a
+ * network error
+ */
public Bundle getAccountRemovalAllowed(AccountAuthenticatorResponse response,
Account account) throws NetworkErrorException {
final Bundle result = new Bundle();
diff --git a/core/java/android/accounts/AccountAuthenticatorActivity.java b/core/java/android/accounts/AccountAuthenticatorActivity.java
index 6e1f304..3d7be48 100644
--- a/core/java/android/accounts/AccountAuthenticatorActivity.java
+++ b/core/java/android/accounts/AccountAuthenticatorActivity.java
@@ -22,21 +22,17 @@
/**
* Base class for implementing an Activity that is used to help implement an
- * AbstractAccountAuthenticator. If the AbstractAccountAuthenticator needs to return an Intent
- * that is to be used to launch an Activity that needs to return results to satisfy an
- * AbstractAccountAuthenticator request, it should store the AccountAuthenticatorResponse
- * inside of the Intent as follows:
- * <p>
+ * AbstractAccountAuthenticator. If the AbstractAccountAuthenticator needs to use an activity
+ * to handle the request then it can have the activity extend AccountAuthenticatorActivity.
+ * The AbstractAccountAuthenticator passes in the response to the intent using the following:
+ * <pre>
* intent.putExtra(Constants.ACCOUNT_AUTHENTICATOR_RESPONSE_KEY, response);
- * <p>
- * The activity that it launches should extend the AccountAuthenticatorActivity. If this
- * activity has a result that satisfies the original request it sets it via:
- * <p>
- * setAccountAuthenticatorResult(result)
- * <p>
+ * </pre>
+ * The activity then sets the result that is to be handed to the response via
+ * {@link #setAccountAuthenticatorResult(android.os.Bundle)}.
* This result will be sent as the result of the request when the activity finishes. If this
- * is never set or if it is set to null then the request will be canceled when the activity
- * finishes.
+ * is never set or if it is set to null then error {@link AccountManager#ERROR_CODE_CANCELED}
+ * will be called on the response.
*/
public class AccountAuthenticatorActivity extends Activity {
private AccountAuthenticatorResponse mAccountAuthenticatorResponse = null;
diff --git a/core/java/android/accounts/AccountManager.java b/core/java/android/accounts/AccountManager.java
index d032449..153d95f 100644
--- a/core/java/android/accounts/AccountManager.java
+++ b/core/java/android/accounts/AccountManager.java
@@ -42,13 +42,34 @@
import com.google.android.collect.Maps;
/**
- * A class that helps with interactions with the AccountManagerService. It provides
+ * A class that helps with interactions with the AccountManager Service. It provides
* methods to allow for account, password, and authtoken management for all accounts on the
* device. One accesses the {@link AccountManager} by calling:
+ * <pre>
* AccountManager accountManager = AccountManager.get(context);
+ * </pre>
*
* <p>
- * TODO(fredq) this interface is still in flux
+ * The AccountManager Service provides storage for the accounts known to the system,
+ * provides methods to manage them, and allows the registration of authenticators to
+ * which operations such as addAccount and getAuthToken are delegated.
+ * <p>
+ * Many of the calls take an {@link AccountManagerCallback} and {@link Handler} as parameters.
+ * These calls return immediately but run asynchronously. If a callback is provided then
+ * {@link AccountManagerCallback#run} will be invoked wen the request completes, successfully
+ * or not. An {@link AccountManagerFuture} is returned by these requests and also passed into the
+ * callback. The result if retrieved by calling {@link AccountManagerFuture#getResult()} which
+ * either returns the result or throws an exception as appropriate.
+ * <p>
+ * The asynchronous request can be made blocking by not providing a callback and instead
+ * calling {@link AccountManagerFuture#getResult()} on the future that is returned. This will
+ * cause the running thread to block until the result is returned. Keep in mind that one
+ * should not block the main thread in this way. Instead one should either use a callback,
+ * thus making the call asynchronous, or make the blocking call on a separate thread.
+ * <p>
+ * If one wants to ensure that the callback is invoked from a specific handler then they should
+ * pass the handler to the request. This makes it easier to ensure thread-safety by running
+ * all of one's logic from a single handler.
*/
public class AccountManager {
private static final String TAG = "AccountManager";
@@ -60,6 +81,7 @@
public static final int ERROR_CODE_UNSUPPORTED_OPERATION = 6;
public static final int ERROR_CODE_BAD_ARGUMENTS = 7;
public static final int ERROR_CODE_BAD_REQUEST = 8;
+
public static final String KEY_ACCOUNTS = "accounts";
public static final String KEY_AUTHENTICATOR_TYPES = "authenticator_types";
public static final String KEY_USERDATA = "userdata";
@@ -110,10 +132,26 @@
mMainHandler = handler;
}
+ /**
+ * Retrieve an AccountManager instance that is associated with the context that is passed in.
+ * Certain calls such as {@link #addOnAccountsUpdatedListener} use this context internally,
+ * so the caller must take care to use a {@link Context} whose lifetime is associated with
+ * the listener registration.
+ * @param context The {@link Context} to use when necessary
+ * @return an {@link AccountManager} instance that is associated with context
+ */
public static AccountManager get(Context context) {
return (AccountManager) context.getSystemService(Context.ACCOUNT_SERVICE);
}
+ /**
+ * Get the password that is associated with the account. Returns null if the account does
+ * not exist.
+ * <p>
+ * Requires that the caller has permission
+ * {@link android.Manifest.permission#AUTHENTICATE_ACCOUNTS} and is running
+ * with the same UID as the Authenticator for the account.
+ */
public String getPassword(final Account account) {
try {
return mService.getPassword(account);
@@ -123,6 +161,14 @@
}
}
+ /**
+ * Get the user data named by "key" that is associated with the account.
+ * Returns null if the account does not exist or if it does not have a value for key.
+ * <p>
+ * Requires that the caller has permission
+ * {@link android.Manifest.permission#AUTHENTICATE_ACCOUNTS} and is running
+ * with the same UID as the Authenticator for the account.
+ */
public String getUserData(final Account account, final String key) {
try {
return mService.getUserData(account, key);
@@ -132,6 +178,14 @@
}
}
+ /**
+ * Query the AccountManager Service for an array that contains a
+ * {@link AuthenticatorDescription} for each registered authenticator.
+ * @return an array that contains all the authenticators known to the AccountManager service.
+ * This array will be empty if there are no authenticators and will never return null.
+ * <p>
+ * No permission is required to make this call.
+ */
public AuthenticatorDescription[] getAuthenticatorTypes() {
try {
return mService.getAuthenticatorTypes();
@@ -141,6 +195,13 @@
}
}
+ /**
+ * Query the AccountManager Service for all accounts.
+ * @return an array that contains all the accounts known to the AccountManager service.
+ * This array will be empty if there are no accounts and will never return null.
+ * <p>
+ * Requires that the caller has permission {@link android.Manifest.permission#GET_ACCOUNTS}
+ */
public Account[] getAccounts() {
try {
return mService.getAccounts(null);
@@ -150,6 +211,15 @@
}
}
+ /**
+ * Query the AccountManager for the set of accounts that have a given type. If null
+ * is passed as the type than all accounts are returned.
+ * @param type the account type by which to filter, or null to get all accounts
+ * @return an array that contains the accounts that match the specified type. This array
+ * will be empty if no accounts match. It will never return null.
+ * <p>
+ * Requires that the caller has permission {@link android.Manifest.permission#GET_ACCOUNTS}
+ */
public Account[] getAccountsByType(String type) {
try {
return mService.getAccounts(type);
@@ -159,6 +229,18 @@
}
}
+ /**
+ * Add an account to the AccountManager's set of known accounts.
+ * <p>
+ * Requires that the caller has permission
+ * {@link android.Manifest.permission#AUTHENTICATE_ACCOUNTS} and is running
+ * with the same UID as the Authenticator for the account.
+ * @param account The account to add
+ * @param password The password to associate with the account. May be null.
+ * @param extras A bundle of key/value pairs to set as the account's userdata. May be null.
+ * @return true if the account was sucessfully added, false otherwise, for example,
+ * if the account already exists or if the account is null
+ */
public boolean addAccountExplicitly(Account account, String password, Bundle extras) {
try {
return mService.addAccount(account, password, extras);
@@ -168,6 +250,29 @@
}
}
+ /**
+ * Removes the given account. If this account does not exist then this call has no effect.
+ * <p>
+ * This call returns immediately but runs asynchronously and the result is accessed via the
+ * {@link AccountManagerFuture} that is returned. This future is also passed as the sole
+ * parameter to the {@link AccountManagerCallback}. If the caller wished to use this
+ * method asynchronously then they will generally pass in a callback object that will get
+ * invoked with the {@link AccountManagerFuture}. If they wish to use it synchronously then
+ * they will generally pass null for the callback and instead call
+ * {@link android.accounts.AccountManagerFuture#getResult()} on this method's return value,
+ * which will then block until the request completes.
+ * <p>
+ * Requires that the caller has permission {@link android.Manifest.permission#MANAGE_ACCOUNTS}.
+ *
+ * @param account The {@link Account} to remove
+ * @param callback A callback to invoke when the request completes. If null then
+ * no callback is invoked.
+ * @param handler The {@link Handler} to use to invoke the callback. If null then the
+ * main thread's {@link Handler} is used.
+ * @return an {@link AccountManagerFuture} that represents the future result of the call.
+ * The future result is a {@link Boolean} that is true if the account is successfully removed
+ * or false if the authenticator refuses to remove the account.
+ */
public AccountManagerFuture<Boolean> removeAccount(final Account account,
AccountManagerCallback<Boolean> callback, Handler handler) {
return new Future2Task<Boolean>(handler, callback) {
@@ -183,6 +288,14 @@
}.start();
}
+ /**
+ * Removes the given authtoken. If this authtoken does not exist for the given account type
+ * then this call has no effect.
+ * <p>
+ * Requires that the caller has permission {@link android.Manifest.permission#MANAGE_ACCOUNTS}.
+ * @param accountType the account type of the authtoken to invalidate
+ * @param authToken the authtoken to invalidate
+ */
public void invalidateAuthToken(final String accountType, final String authToken) {
try {
mService.invalidateAuthToken(accountType, authToken);
@@ -192,6 +305,20 @@
}
}
+ /**
+ * Gets the authtoken named by "authTokenType" for the specified account if it is cached
+ * by the AccountManager. If no authtoken is cached then null is returned rather than
+ * asking the authenticaticor to generate one. If the account or the
+ * authtoken do not exist then null is returned.
+ * <p>
+ * Requires that the caller has permission
+ * {@link android.Manifest.permission#AUTHENTICATE_ACCOUNTS} and is running
+ * with the same UID as the Authenticator for the account.
+ * @param account the account whose authtoken is to be retrieved, must not be null
+ * @param authTokenType the type of authtoken to retrieve
+ * @return an authtoken for the given account and authTokenType, if one is cached by the
+ * AccountManager, null otherwise.
+ */
public String peekAuthToken(final Account account, final String authTokenType) {
try {
return mService.peekAuthToken(account, authTokenType);
@@ -201,6 +328,16 @@
}
}
+ /**
+ * Sets the password for the account. The password may be null. If the account does not exist
+ * then this call has no affect.
+ * <p>
+ * Requires that the caller has permission
+ * {@link android.Manifest.permission#AUTHENTICATE_ACCOUNTS} and is running
+ * with the same UID as the Authenticator for the account.
+ * @param account the account whose password is to be set. Must not be null.
+ * @param password the password to set for the account. May be null.
+ */
public void setPassword(final Account account, final String password) {
try {
mService.setPassword(account, password);
@@ -210,6 +347,13 @@
}
}
+ /**
+ * Sets the password for account to null. If the account does not exist then this call
+ * has no effect.
+ * <p>
+ * Requires that the caller has permission {@link android.Manifest.permission#MANAGE_ACCOUNTS}.
+ * @param account the account whose password is to be cleared. Must not be null.
+ */
public void clearPassword(final Account account) {
try {
mService.clearPassword(account);
@@ -219,6 +363,17 @@
}
}
+ /**
+ * Sets account's userdata named "key" to the specified value. If the account does not
+ * exist then this call has no effect.
+ * <p>
+ * Requires that the caller has permission
+ * {@link android.Manifest.permission#AUTHENTICATE_ACCOUNTS} and is running
+ * with the same UID as the Authenticator for the account.
+ * @param account the account whose userdata is to be set. Must not be null.
+ * @param key the key of the userdata to set. Must not be null.
+ * @param value the value to set. May be null.
+ */
public void setUserData(final Account account, final String key, final String value) {
try {
mService.setUserData(account, key, value);
@@ -228,6 +383,17 @@
}
}
+ /**
+ * Sets the authtoken named by "authTokenType" to the value specified by authToken.
+ * If the account does not exist then this call has no effect.
+ * <p>
+ * Requires that the caller has permission
+ * {@link android.Manifest.permission#AUTHENTICATE_ACCOUNTS} and is running
+ * with the same UID as the Authenticator for the account.
+ * @param account the account whose authtoken is to be set. Must not be null.
+ * @param authTokenType the type of the authtoken to set. Must not be null.
+ * @param authToken the authToken to set. May be null.
+ */
public void setAuthToken(Account account, final String authTokenType, final String authToken) {
try {
mService.setAuthToken(account, authTokenType, authToken);
@@ -237,6 +403,25 @@
}
}
+ /**
+ * Convenience method that makes a blocking call to
+ * {@link #getAuthToken(Account, String, boolean, AccountManagerCallback, Handler)}
+ * then extracts and returns the value of {@link #KEY_AUTHTOKEN} from its result.
+ * <p>
+ * Requires that the caller has permission {@link android.Manifest.permission#USE_CREDENTIALS}.
+ * @param account the account whose authtoken is to be retrieved, must not be null
+ * @param authTokenType the type of authtoken to retrieve
+ * @param notifyAuthFailure if true, cause the AccountManager to put up a "sign-on" notification
+ * for the account if no authtoken is cached by the AccountManager and the the authenticator
+ * does not have valid credentials to get an authtoken.
+ * @return an authtoken for the given account and authTokenType, if one is cached by the
+ * AccountManager, null otherwise.
+ * @throws AuthenticatorException if the authenticator is not present, unreachable or returns
+ * an invalid response.
+ * @throws OperationCanceledException if the request is canceled for any reason
+ * @throws java.io.IOException if the authenticator experiences an IOException while attempting
+ * to communicate with its backend server.
+ */
public String blockingGetAuthToken(Account account, String authTokenType,
boolean notifyAuthFailure)
throws OperationCanceledException, IOException, AuthenticatorException {
@@ -246,16 +431,47 @@
}
/**
- * Request the auth token for this account/authTokenType. If this succeeds then the
- * auth token will then be passed to the activity. If this results in an authentication
- * failure then a login intent will be returned that can be invoked to prompt the user to
- * update their credentials. This login activity will return the auth token to the calling
- * activity. If activity is null then the login intent will not be invoked.
+ * Request that an authtoken of the specified type be returned for an account.
+ * If the Account Manager has a cached authtoken of the requested type then it will
+ * service the request itself. Otherwise it will pass the request on to the authenticator.
+ * The authenticator can try to service this request with information it already has stored
+ * in the AccountManager but may need to launch an activity to prompt the
+ * user to enter credentials. If it is able to retrieve the authtoken it will be returned
+ * in the result.
+ * <p>
+ * If the authenticator needs to prompt the user for credentials it will return an intent to
+ * the activity that will do the prompting. If an activity is supplied then that activity
+ * will be used to launch the intent and the result will come from it. Otherwise a result will
+ * be returned that contains the intent.
+ * <p>
+ * This call returns immediately but runs asynchronously and the result is accessed via the
+ * {@link AccountManagerFuture} that is returned. This future is also passed as the sole
+ * parameter to the {@link AccountManagerCallback}. If the caller wished to use this
+ * method asynchronously then they will generally pass in a callback object that will get
+ * invoked with the {@link AccountManagerFuture}. If they wish to use it synchronously then
+ * they will generally pass null for the callback and instead call
+ * {@link android.accounts.AccountManagerFuture#getResult()} on this method's return value,
+ * which will then block until the request completes.
+ * <p>
+ * Requires that the caller has permission {@link android.Manifest.permission#USE_CREDENTIALS}.
*
- * @param account the account whose auth token should be retrieved
- * @param authTokenType the auth token type that should be retrieved
- * @param loginOptions
- * @param activity the activity to launch the login intent, if necessary, and to which
+ * @param account The account whose credentials are to be updated.
+ * @param authTokenType the auth token to retrieve as part of updating the credentials.
+ * May be null.
+ * @param loginOptions authenticator specific options for the request
+ * @param activity If the authenticator returns a {@link #KEY_INTENT} in the result then
+ * the intent will be started with this activity. If activity is null then the result will
+ * be returned as-is.
+ * @param callback A callback to invoke when the request completes. If null then
+ * no callback is invoked.
+ * @param handler The {@link Handler} to use to invoke the callback. If null then the
+ * main thread's {@link Handler} is used.
+ * @return an {@link AccountManagerFuture} that represents the future result of the call.
+ * The future result is a {@link Bundle} that contains:
+ * <ul>
+ * <li> {@link #KEY_ACCOUNT_NAME}, {@link #KEY_ACCOUNT_TYPE} and {@link #KEY_AUTHTOKEN}
+ * </ul>
+ * If the user presses "back" then the request will be canceled.
*/
public AccountManagerFuture<Bundle> getAuthToken(
final Account account, final String authTokenType, final Bundle loginOptions,
@@ -271,6 +487,48 @@
}.start();
}
+ /**
+ * Request that an authtoken of the specified type be returned for an account.
+ * If the Account Manager has a cached authtoken of the requested type then it will
+ * service the request itself. Otherwise it will pass the request on to the authenticator.
+ * The authenticator can try to service this request with information it already has stored
+ * in the AccountManager but may need to launch an activity to prompt the
+ * user to enter credentials. If it is able to retrieve the authtoken it will be returned
+ * in the result.
+ * <p>
+ * If the authenticator needs to prompt the user for credentials it will return an intent for
+ * an activity that will do the prompting. If an intent is returned and notifyAuthFailure
+ * is true then a notification will be created that launches this intent.
+ * <p>
+ * This call returns immediately but runs asynchronously and the result is accessed via the
+ * {@link AccountManagerFuture} that is returned. This future is also passed as the sole
+ * parameter to the {@link AccountManagerCallback}. If the caller wished to use this
+ * method asynchronously then they will generally pass in a callback object that will get
+ * invoked with the {@link AccountManagerFuture}. If they wish to use it synchronously then
+ * they will generally pass null for the callback and instead call
+ * {@link android.accounts.AccountManagerFuture#getResult()} on this method's return value,
+ * which will then block until the request completes.
+ * <p>
+ * Requires that the caller has permission {@link android.Manifest.permission#USE_CREDENTIALS}.
+ *
+ * @param account The account whose credentials are to be updated.
+ * @param authTokenType the auth token to retrieve as part of updating the credentials.
+ * May be null.
+ * @param notifyAuthFailure if true and the authenticator returns a {@link #KEY_INTENT} in the
+ * result then a "sign-on needed" notification will be created that will launch this intent.
+ * @param callback A callback to invoke when the request completes. If null then
+ * no callback is invoked.
+ * @param handler The {@link Handler} to use to invoke the callback. If null then the
+ * main thread's {@link Handler} is used.
+ * @return an {@link AccountManagerFuture} that represents the future result of the call.
+ * The future result is a {@link Bundle} that contains either:
+ * <ul>
+ * <li> {@link #KEY_INTENT}, which is to be used to prompt the user for the credentials
+ * <li> {@link #KEY_ACCOUNT_NAME}, {@link #KEY_ACCOUNT_TYPE} and {@link #KEY_AUTHTOKEN}
+ * if the authenticator is able to retrieve the auth token
+ * </ul>
+ * If the user presses "back" then the request will be canceled.
+ */
public AccountManagerFuture<Bundle> getAuthToken(
final Account account, final String authTokenType, final boolean notifyAuthFailure,
AccountManagerCallback<Bundle> callback, Handler handler) {
@@ -284,6 +542,44 @@
}.start();
}
+ /**
+ * Request that an account be added with the given accountType. This request
+ * is processed by the authenticator for the account type. If no authenticator is registered
+ * in the system then {@link AuthenticatorException} is thrown.
+ * <p>
+ * This call returns immediately but runs asynchronously and the result is accessed via the
+ * {@link AccountManagerFuture} that is returned. This future is also passed as the sole
+ * parameter to the {@link AccountManagerCallback}. If the caller wished to use this
+ * method asynchronously then they will generally pass in a callback object that will get
+ * invoked with the {@link AccountManagerFuture}. If they wish to use it synchronously then
+ * they will generally pass null for the callback and instead call
+ * {@link android.accounts.AccountManagerFuture#getResult()} on this method's return value,
+ * which will then block until the request completes.
+ * <p>
+ * Requires that the caller has permission {@link android.Manifest.permission#MANAGE_ACCOUNTS}.
+ *
+ * @param accountType The type of account to add. This must not be null.
+ * @param authTokenType The account that is added should be able to service this auth token
+ * type. This may be null.
+ * @param requiredFeatures The account that is added should support these features.
+ * This array may be null or empty.
+ * @param addAccountOptions A bundle of authenticator-specific options that is passed on
+ * to the authenticator. This may be null.
+ * @param activity If the authenticator returns a {@link #KEY_INTENT} in the result then
+ * the intent will be started with this activity. If activity is null then the result will
+ * be returned as-is.
+ * @param callback A callback to invoke when the request completes. If null then
+ * no callback is invoked.
+ * @param handler The {@link Handler} to use to invoke the callback. If null then the
+ * main thread's {@link Handler} is used.
+ * @return an {@link AccountManagerFuture} that represents the future result of the call.
+ * The future result is a {@link Bundle} that contains either:
+ * <ul>
+ * <li> {@link #KEY_INTENT}, or
+ * <li> {@link #KEY_ACCOUNT_NAME}, {@link #KEY_ACCOUNT_TYPE}
+ * and {@link #KEY_AUTHTOKEN} (if an authTokenType was specified).
+ * </ul>
+ */
public AccountManagerFuture<Bundle> addAccount(final String accountType,
final String authTokenType, final String[] requiredFeatures,
final Bundle addAccountOptions,
@@ -318,6 +614,42 @@
}.start();
}
+ /**
+ * Requests that the authenticator checks that the user knows the credentials for the account.
+ * This is typically done by returning an intent to an activity that prompts the user to
+ * enter the credentials. This request
+ * is processed by the authenticator for the account. If no matching authenticator is
+ * registered in the system then {@link AuthenticatorException} is thrown.
+ * <p>
+ * This call returns immediately but runs asynchronously and the result is accessed via the
+ * {@link AccountManagerFuture} that is returned. This future is also passed as the sole
+ * parameter to the {@link AccountManagerCallback}. If the caller wished to use this
+ * method asynchronously then they will generally pass in a callback object that will get
+ * invoked with the {@link AccountManagerFuture}. If they wish to use it synchronously then
+ * they will generally pass null for the callback and instead call
+ * {@link android.accounts.AccountManagerFuture#getResult()} on this method's return value,
+ * which will then block until the request completes.
+ * <p>
+ * Requires that the caller has permission {@link android.Manifest.permission#MANAGE_ACCOUNTS}.
+ *
+ * @param account The account whose credentials are to be checked
+ * @param options authenticator specific options for the request
+ * @param activity If the authenticator returns a {@link #KEY_INTENT} in the result then
+ * the intent will be started with this activity. If activity is null then the result will
+ * be returned as-is.
+ * @param callback A callback to invoke when the request completes. If null then
+ * no callback is invoked.
+ * @param handler The {@link Handler} to use to invoke the callback. If null then the
+ * main thread's {@link Handler} is used.
+ * @return an {@link AccountManagerFuture} that represents the future result of the call.
+ * The future result is a {@link Bundle} that contains either:
+ * <ul>
+ * <li> {@link #KEY_INTENT}, which is to be used to prompt the user for the credentials
+ * <li> {@link #KEY_ACCOUNT_NAME} and {@link #KEY_ACCOUNT_TYPE} if the user enters the correct
+ * credentials
+ * </ul>
+ * If the user presses "back" then the request will be canceled.
+ */
public AccountManagerFuture<Bundle> confirmCredentials(final Account account,
final Bundle options,
final Activity activity,
@@ -330,7 +662,46 @@
}.start();
}
- public AccountManagerFuture<Bundle> updateCredentials(final Account account, final String authTokenType,
+ /**
+ * Requests that the authenticator update the the credentials for a user. This is typically
+ * done by returning an intent to an activity that will prompt the user to update the stored
+ * credentials for the account. This request
+ * is processed by the authenticator for the account. If no matching authenticator is
+ * registered in the system then {@link AuthenticatorException} is thrown.
+ * <p>
+ * This call returns immediately but runs asynchronously and the result is accessed via the
+ * {@link AccountManagerFuture} that is returned. This future is also passed as the sole
+ * parameter to the {@link AccountManagerCallback}. If the caller wished to use this
+ * method asynchronously then they will generally pass in a callback object that will get
+ * invoked with the {@link AccountManagerFuture}. If they wish to use it synchronously then
+ * they will generally pass null for the callback and instead call
+ * {@link android.accounts.AccountManagerFuture#getResult()} on this method's return value,
+ * which will then block until the request completes.
+ * <p>
+ * Requires that the caller has permission {@link android.Manifest.permission#MANAGE_ACCOUNTS}.
+ *
+ * @param account The account whose credentials are to be updated.
+ * @param authTokenType the auth token to retrieve as part of updating the credentials.
+ * May be null.
+ * @param loginOptions authenticator specific options for the request
+ * @param activity If the authenticator returns a {@link #KEY_INTENT} in the result then
+ * the intent will be started with this activity. If activity is null then the result will
+ * be returned as-is.
+ * @param callback A callback to invoke when the request completes. If null then
+ * no callback is invoked.
+ * @param handler The {@link Handler} to use to invoke the callback. If null then the
+ * main thread's {@link Handler} is used.
+ * @return an {@link AccountManagerFuture} that represents the future result of the call.
+ * The future result is a {@link Bundle} that contains either:
+ * <ul>
+ * <li> {@link #KEY_INTENT}, which is to be used to prompt the user for the credentials
+ * <li> {@link #KEY_ACCOUNT_NAME} and {@link #KEY_ACCOUNT_TYPE} if the user enters the correct
+ * credentials, and optionally a {@link #KEY_AUTHTOKEN} if an authTokenType was provided.
+ * </ul>
+ * If the user presses "back" then the request will be canceled.
+ */
+ public AccountManagerFuture<Bundle> updateCredentials(final Account account,
+ final String authTokenType,
final Bundle loginOptions, final Activity activity,
final AccountManagerCallback<Bundle> callback,
final Handler handler) {
@@ -342,8 +713,41 @@
}.start();
}
- public AccountManagerFuture<Bundle> editProperties(final String accountType, final Activity activity,
- final AccountManagerCallback<Bundle> callback,
+ /**
+ * Request that the properties for an authenticator be updated. This is typically done by
+ * returning an intent to an activity that will allow the user to make changes. This request
+ * is processed by the authenticator for the account. If no matching authenticator is
+ * registered in the system then {@link AuthenticatorException} is thrown.
+ * <p>
+ * This call returns immediately but runs asynchronously and the result is accessed via the
+ * {@link AccountManagerFuture} that is returned. This future is also passed as the sole
+ * parameter to the {@link AccountManagerCallback}. If the caller wished to use this
+ * method asynchronously then they will generally pass in a callback object that will get
+ * invoked with the {@link AccountManagerFuture}. If they wish to use it synchronously then
+ * they will generally pass null for the callback and instead call
+ * {@link android.accounts.AccountManagerFuture#getResult()} on this method's return value,
+ * which will then block until the request completes.
+ * <p>
+ * Requires that the caller has permission {@link android.Manifest.permission#MANAGE_ACCOUNTS}.
+ *
+ * @param accountType The account type of the authenticator whose properties are to be edited.
+ * @param activity If the authenticator returns a {@link #KEY_INTENT} in the result then
+ * the intent will be started with this activity. If activity is null then the result will
+ * be returned as-is.
+ * @param callback A callback to invoke when the request completes. If null then
+ * no callback is invoked.
+ * @param handler The {@link Handler} to use to invoke the callback. If null then the
+ * main thread's {@link Handler} is used.
+ * @return an {@link AccountManagerFuture} that represents the future result of the call.
+ * The future result is a {@link Bundle} that contains either:
+ * <ul>
+ * <li> {@link #KEY_INTENT}, which is to be used to prompt the user for the credentials
+ * <li> nothing, returned if the edit completes successfully
+ * </ul>
+ * If the user presses "back" then the request will be canceled.
+ */
+ public AccountManagerFuture<Bundle> editProperties(final String accountType,
+ final Activity activity, final AccountManagerCallback<Bundle> callback,
final Handler handler) {
return new AmsTask(activity, handler, callback) {
public void doWork() throws RemoteException {
@@ -783,6 +1187,48 @@
}
}
+ /**
+ * Convenience method that combines the functionality of {@link #getAccountsByTypeAndFeatures},
+ * {@link #getAuthToken(Account, String, Bundle, Activity, AccountManagerCallback, Handler)},
+ * and {@link #addAccount}. It first gets the list of accounts that match accountType and the
+ * feature set. If there are none then {@link #addAccount} is invoked with the authTokenType
+ * feature set, and addAccountOptions. If there is exactly one then
+ * {@link #getAuthToken(Account, String, Bundle, Activity, AccountManagerCallback, Handler)} is
+ * called with that account. If there are more than one then a chooser activity is launched
+ * to prompt the user to select one of them and then the authtoken is retrieved for it,
+ * <p>
+ * This call returns immediately but runs asynchronously and the result is accessed via the
+ * {@link AccountManagerFuture} that is returned. This future is also passed as the sole
+ * parameter to the {@link AccountManagerCallback}. If the caller wished to use this
+ * method asynchronously then they will generally pass in a callback object that will get
+ * invoked with the {@link AccountManagerFuture}. If they wish to use it synchronously then
+ * they will generally pass null for the callback and instead call
+ * {@link android.accounts.AccountManagerFuture#getResult()} on this method's return value,
+ * which will then block until the request completes.
+ * <p>
+ * Requires that the caller has permission {@link android.Manifest.permission#MANAGE_ACCOUNTS}.
+ *
+ * @param accountType the accountType to query; this must be non-null
+ * @param authTokenType the type of authtoken to retrieve; this must be non-null
+ * @param features a filter for the accounts. See {@link #getAccountsByTypeAndFeatures}.
+ * @param activityForPrompting The activity used to start any account management
+ * activities that are required to fulfill this request. This may be null.
+ * @param addAccountOptions authenticator-specific options used if an account needs to be added
+ * @param loginOptions authenticator-specific options passed to getAuthToken
+ * @param callback A callback to invoke when the request completes. If null then
+ * no callback is invoked.
+ * @param handler The {@link Handler} to use to invoke the callback. If null then the
+ * main thread's {@link Handler} is used.
+ * @return an {@link AccountManagerFuture} that represents the future result of the call.
+ * The future result is a {@link Bundle} that contains either:
+ * <ul>
+ * <li> {@link #KEY_INTENT}, if no activity is supplied yet an activity needs to launched to
+ * fulfill the request.
+ * <li> {@link #KEY_ACCOUNT_NAME}, {@link #KEY_ACCOUNT_TYPE} and {@link #KEY_AUTHTOKEN} if the
+ * request completes successfully.
+ * </ul>
+ * If the user presses "back" then the request will be canceled.
+ */
public AccountManagerFuture<Bundle> getAuthTokenByFeatures(
final String accountType, final String authTokenType, final String[] features,
final Activity activityForPrompting, final Bundle addAccountOptions,
diff --git a/core/java/android/accounts/AccountManagerFuture.java b/core/java/android/accounts/AccountManagerFuture.java
index 0a26bfa..a1ab00c 100644
--- a/core/java/android/accounts/AccountManagerFuture.java
+++ b/core/java/android/accounts/AccountManagerFuture.java
@@ -80,29 +80,37 @@
boolean isDone();
/**
- * Wrapper for {@link java.util.concurrent.Future#get()}. If the get() throws
- * {@link InterruptedException} then the
- * {@link AccountManagerFuture} is canceled and
- * {@link android.accounts.OperationCanceledException} is thrown.
- * @return the {@link android.os.Bundle} that is returned by get()
- * @throws android.accounts.OperationCanceledException if get() throws the unchecked
- * CancellationException
- * or if the Future was interrupted.
+ * Accessor for the future result the {@link AccountManagerFuture} represents. This
+ * call will block until the result is available. In order to check if the result is
+ * available without blocking, one may call {@link #isDone()} and {@link #isCancelled()}.
+ * If the request that generated this result fails or is canceled then an exception
+ * will be thrown rather than the call returning normally.
+ * @return the actual result
+ * @throws android.accounts.OperationCanceledException if the request was canceled for any
+ * reason
+ * @throws android.accounts.AuthenticatorException if there was an error communicating with
+ * the authenticator or if the authenticator returned an invalid response
+ * @throws java.io.IOException if the authenticator returned an error response that indicates
+ * that it encountered an IOException while communicating with the authentication server
*/
V getResult() throws OperationCanceledException, IOException, AuthenticatorException;
/**
- * Wrapper for {@link java.util.concurrent.Future#get()}. If the get() throws
- * {@link InterruptedException} then the
- * {@link AccountManagerFuture} is canceled and
- * {@link android.accounts.OperationCanceledException} is thrown.
+ * Accessor for the future result the {@link AccountManagerFuture} represents. This
+ * call will block until the result is available. In order to check if the result is
+ * available without blocking, one may call {@link #isDone()} and {@link #isCancelled()}.
+ * If the request that generated this result fails or is canceled then an exception
+ * will be thrown rather than the call returning normally. If a timeout is specified then
+ * the request will automatically be canceled if it does not complete in that amount of time.
* @param timeout the maximum time to wait
- * @param unit the time unit of the timeout argument
- * @return the {@link android.os.Bundle} that is returned by
- * {@link java.util.concurrent.Future#get()}
- * @throws android.accounts.OperationCanceledException if get() throws the unchecked
- * {@link java.util.concurrent.CancellationException} or if the {@link AccountManagerFuture}
- * was interrupted.
+ * @param unit the time unit of the timeout argument. This must not be null.
+ * @return the actual result
+ * @throws android.accounts.OperationCanceledException if the request was canceled for any
+ * reason
+ * @throws android.accounts.AuthenticatorException if there was an error communicating with
+ * the authenticator or if the authenticator returned an invalid response
+ * @throws java.io.IOException if the authenticator returned an error response that indicates
+ * that it encountered an IOException while communicating with the authentication server
*/
V getResult(long timeout, TimeUnit unit)
throws OperationCanceledException, IOException, AuthenticatorException;
diff --git a/core/java/android/accounts/AuthenticatorDescription.java b/core/java/android/accounts/AuthenticatorDescription.java
index 28673b4..e642700 100644
--- a/core/java/android/accounts/AuthenticatorDescription.java
+++ b/core/java/android/accounts/AuthenticatorDescription.java
@@ -3,15 +3,33 @@
import android.os.Parcelable;
import android.os.Parcel;
+/**
+ * A {@link Parcelable} value type that contains information about an account authenticator.
+ */
public class AuthenticatorDescription implements Parcelable {
+ /** The string that uniquely identifies an authenticator */
final public String type;
+
+ /** A resource id of a label for the authenticator that is suitable for displaying */
final public int labelId;
- final public int iconId;
- final public int smallIconId;
+
+ /** A resource id of a icon for the authenticator */
+ final public int iconId;
+
+ /** A resource id of a smaller icon for the authenticator */
+ final public int smallIconId;
+
+ /**
+ * A resource id for a hierarchy of PreferenceScreen to be added to the settings page for the
+ * account. See {@link AbstractAccountAuthenticator} for an example.
+ */
final public int accountPreferencesId;
+
+ /** The package name that can be used to lookup the resources from above. */
final public String packageName;
- public AuthenticatorDescription(String type, String packageName, int labelId, int iconId,
+ /** A constructor for a full AuthenticatorDescription */
+ public AuthenticatorDescription(String type, String packageName, int labelId, int iconId,
int smallIconId, int prefId) {
if (type == null) throw new IllegalArgumentException("type cannot be null");
if (packageName == null) throw new IllegalArgumentException("packageName cannot be null");
@@ -23,6 +41,11 @@
this.accountPreferencesId = prefId;
}
+ /**
+ * A factory method for creating an AuthenticatorDescription that can be used as a key
+ * to identify the authenticator by its type.
+ */
+
public static AuthenticatorDescription newKey(String type) {
if (type == null) throw new IllegalArgumentException("type cannot be null");
return new AuthenticatorDescription(type);
@@ -46,14 +69,17 @@
this.accountPreferencesId = source.readInt();
}
+ /** @inheritDoc */
public int describeContents() {
return 0;
}
+ /** Returns the hashcode of the type only. */
public int hashCode() {
return type.hashCode();
}
+ /** Compares the type only, suitable for key comparisons. */
public boolean equals(Object o) {
if (o == this) return true;
if (!(o instanceof AuthenticatorDescription)) return false;
@@ -61,6 +87,7 @@
return type.equals(other.type);
}
+ /** @inhericDoc */
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(type);
dest.writeString(packageName);
@@ -70,12 +97,15 @@
dest.writeInt(accountPreferencesId);
}
+ /** Used to create the object from a parcel. */
public static final Creator<AuthenticatorDescription> CREATOR =
new Creator<AuthenticatorDescription>() {
+ /** @inheritDoc */
public AuthenticatorDescription createFromParcel(Parcel source) {
return new AuthenticatorDescription(source);
}
+ /** @inheritDoc */
public AuthenticatorDescription[] newArray(int size) {
return new AuthenticatorDescription[size];
}
diff --git a/core/java/android/app/WallpaperManager.java b/core/java/android/app/WallpaperManager.java
index 69c87ee..5881694 100644
--- a/core/java/android/app/WallpaperManager.java
+++ b/core/java/android/app/WallpaperManager.java
@@ -592,6 +592,31 @@
}
/**
+ * Send an arbitrary command to the current active wallpaper.
+ *
+ * @param windowToken The window who these offsets should be associated
+ * with, as returned by {@link android.view.View#getWindowToken()
+ * View.getWindowToken()}.
+ * @param action Name of the command to perform. This must be a scoped
+ * name to avoid collisions, such as "com.mycompany.wallpaper.DOIT".
+ * @param x Arbitrary integer argument based on command.
+ * @param y Arbitrary integer argument based on command.
+ * @param z Arbitrary integer argument based on command.
+ * @param extras Optional additional information for the command, or null.
+ */
+ public void sendWallpaperCommand(IBinder windowToken, String action,
+ int x, int y, int z, Bundle extras) {
+ try {
+ //Log.v(TAG, "Sending new wallpaper offsets from app...");
+ ViewRoot.getWindowSession(mContext.getMainLooper()).sendWallpaperCommand(
+ windowToken, action, x, y, z, extras, false);
+ //Log.v(TAG, "...app returning after sending offsets!");
+ } catch (RemoteException e) {
+ // Ignore.
+ }
+ }
+
+ /**
* Clear the offsets previously associated with this window through
* {@link #setWallpaperOffsets(IBinder, float, float)}. This reverts
* the window to its default state, where it does not cause the wallpaper
diff --git a/core/java/android/service/wallpaper/WallpaperService.java b/core/java/android/service/wallpaper/WallpaperService.java
index da8d62c0..dfd6af9 100644
--- a/core/java/android/service/wallpaper/WallpaperService.java
+++ b/core/java/android/service/wallpaper/WallpaperService.java
@@ -27,6 +27,7 @@
import android.content.Intent;
import android.content.IntentFilter;
import android.graphics.Rect;
+import android.os.Bundle;
import android.os.IBinder;
import android.os.Looper;
import android.os.Message;
@@ -73,11 +74,21 @@
private static final int MSG_UPDATE_SURFACE = 10000;
private static final int MSG_VISIBILITY_CHANGED = 10010;
private static final int MSG_WALLPAPER_OFFSETS = 10020;
+ private static final int MSG_WALLPAPER_COMMAND = 10025;
private static final int MSG_WINDOW_RESIZED = 10030;
private static final int MSG_TOUCH_EVENT = 10040;
private Looper mCallbackLooper;
+ static final class WallpaperCommand {
+ String action;
+ int x;
+ int y;
+ int z;
+ Bundle extras;
+ boolean sync;
+ }
+
/**
* The actual implementation of a wallpaper. A wallpaper service may
* have multiple instances running (for example as a real wallpaper
@@ -233,6 +244,22 @@
}
}
+ public void dispatchWallpaperCommand(String action, int x, int y,
+ int z, Bundle extras, boolean sync) {
+ synchronized (mLock) {
+ if (DEBUG) Log.v(TAG, "Dispatch wallpaper command: " + x + ", " + y);
+ WallpaperCommand cmd = new WallpaperCommand();
+ cmd.action = action;
+ cmd.x = x;
+ cmd.y = y;
+ cmd.z = z;
+ cmd.extras = extras;
+ cmd.sync = sync;
+ Message msg = mCaller.obtainMessage(MSG_WALLPAPER_COMMAND);
+ msg.obj = cmd;
+ mCaller.sendMessage(msg);
+ }
+ }
};
/**
@@ -338,6 +365,28 @@
}
/**
+ * Process a command that was sent to the wallpaper with
+ * {@link WallpaperManager#sendWallpaperCommand(String, int, int, int, Bundle)}.
+ * The default implementation does nothing, and always returns null
+ * as the result.
+ *
+ * @param action The name of the command to perform. This tells you
+ * what to do and how to interpret the rest of the arguments.
+ * @param x Generic integer parameter.
+ * @param y Generic integer parameter.
+ * @param z Generic integer parameter.
+ * @param extras Any additional parameters.
+ * @param resultRequested If true, the caller is requesting that
+ * a result, appropriate for the command, be returned back.
+ * @return If returning a result, create a Bundle and place the
+ * result data in to it. Otherwise return null.
+ */
+ public Bundle onCommand(String action, int x, int y, int z,
+ Bundle extras, boolean resultRequested) {
+ return null;
+ }
+
+ /**
* Called when an application has changed the desired virtual size of
* the wallpaper.
*/
@@ -585,6 +634,23 @@
}
}
+ void doCommand(WallpaperCommand cmd) {
+ Bundle result;
+ if (!mDestroyed) {
+ result = onCommand(cmd.action, cmd.x, cmd.y, cmd.z,
+ cmd.extras, cmd.sync);
+ } else {
+ result = null;
+ }
+ if (cmd.sync) {
+ try {
+ if (DEBUG) Log.v(TAG, "Reporting command complete");
+ mSession.wallpaperCommandComplete(mWindow.asBinder(), result);
+ } catch (RemoteException e) {
+ }
+ }
+ }
+
void detach() {
mDestroyed = true;
@@ -709,6 +775,10 @@
case MSG_WALLPAPER_OFFSETS: {
mEngine.doOffsetsChanged();
} break;
+ case MSG_WALLPAPER_COMMAND: {
+ WallpaperCommand cmd = (WallpaperCommand)message.obj;
+ mEngine.doCommand(cmd);
+ } break;
case MSG_WINDOW_RESIZED: {
final boolean reportDraw = message.arg1 != 0;
mEngine.updateSurface(true, false);
diff --git a/core/java/android/view/IWindow.aidl b/core/java/android/view/IWindow.aidl
index 7977578..6bfc8b5 100644
--- a/core/java/android/view/IWindow.aidl
+++ b/core/java/android/view/IWindow.aidl
@@ -18,11 +18,11 @@
package android.view;
import android.graphics.Rect;
+import android.os.Bundle;
+import android.os.ParcelFileDescriptor;
import android.view.KeyEvent;
import android.view.MotionEvent;
-import android.os.ParcelFileDescriptor;
-
/**
* API back to a client window that the Window Manager uses to inform it of
* interesting things happening.
@@ -63,4 +63,7 @@
* Called for wallpaper windows when their offsets change.
*/
void dispatchWallpaperOffsets(float x, float y, boolean sync);
+
+ void dispatchWallpaperCommand(String action, int x, int y,
+ int z, in Bundle extras, boolean sync);
}
diff --git a/core/java/android/view/IWindowSession.aidl b/core/java/android/view/IWindowSession.aidl
index 9b8b6d4..7e7a38f 100644
--- a/core/java/android/view/IWindowSession.aidl
+++ b/core/java/android/view/IWindowSession.aidl
@@ -19,6 +19,7 @@
import android.graphics.Rect;
import android.graphics.Region;
+import android.os.Bundle;
import android.view.IWindow;
import android.view.MotionEvent;
import android.view.WindowManager;
@@ -116,4 +117,9 @@
void setWallpaperPosition(IBinder windowToken, float x, float y);
void wallpaperOffsetsComplete(IBinder window);
+
+ Bundle sendWallpaperCommand(IBinder window, String action, int x, int y,
+ int z, in Bundle extras, boolean sync);
+
+ void wallpaperCommandComplete(IBinder window, in Bundle result);
}
diff --git a/core/java/android/view/ViewRoot.java b/core/java/android/view/ViewRoot.java
index 5c2b3c9..e4f2b63 100644
--- a/core/java/android/view/ViewRoot.java
+++ b/core/java/android/view/ViewRoot.java
@@ -2904,6 +2904,16 @@
}
}
}
+
+ public void dispatchWallpaperCommand(String action, int x, int y,
+ int z, Bundle extras, boolean sync) {
+ if (sync) {
+ try {
+ sWindowSession.wallpaperCommandComplete(asBinder(), null);
+ } catch (RemoteException e) {
+ }
+ }
+ }
}
/**
diff --git a/core/java/android/view/WindowManagerPolicy.java b/core/java/android/view/WindowManagerPolicy.java
index 916fc2d..1ab46fc 100644
--- a/core/java/android/view/WindowManagerPolicy.java
+++ b/core/java/android/view/WindowManagerPolicy.java
@@ -868,4 +868,9 @@
* requesting this is no longer visible.
*/
public void screenOnStoppedLw();
+
+ /**
+ * Return false to disable key repeat events from being generated.
+ */
+ public boolean allowKeyRepeat();
}
diff --git a/core/java/android/webkit/HTML5VideoViewProxy.java b/core/java/android/webkit/HTML5VideoViewProxy.java
index b7a9065..3e0be1c 100644
--- a/core/java/android/webkit/HTML5VideoViewProxy.java
+++ b/core/java/android/webkit/HTML5VideoViewProxy.java
@@ -199,6 +199,8 @@
public void playbackEnded() {
Message msg = Message.obtain(mWebCoreHandler, ENDED);
mWebCoreHandler.sendMessage(msg);
+ // also send a message to ourselves to return to the WebView
+ sendMessage(obtainMessage(ENDED));
}
// Handler for the messages from WebCore thread to the UI thread.
@@ -224,6 +226,7 @@
VideoPlayer.pause(this);
break;
}
+ case ENDED:
case ERROR: {
WebChromeClient client = mWebView.getWebChromeClient();
if (client != null) {
diff --git a/core/java/android/webkit/WebTextView.java b/core/java/android/webkit/WebTextView.java
index 0e5e8b5..4fafb65 100644
--- a/core/java/android/webkit/WebTextView.java
+++ b/core/java/android/webkit/WebTextView.java
@@ -88,6 +88,7 @@
// happens, the next time the user hits a key it is okay for the focus
// pointer to not match the WebTextView's node pointer
boolean mOkayForFocusNotToMatch;
+ boolean mResendKeyDown;
// Whether or not a selection change was generated from webkit. If it was,
// we do not need to pass the selection back to webkit.
private boolean mFromWebKit;
@@ -136,10 +137,9 @@
isArrowKey = true;
break;
}
- if (!isArrowKey && !mOkayForFocusNotToMatch
+ if (!isArrowKey && !mOkayForFocusNotToMatch && !mResendKeyDown
&& mWebView.nativeFocusNodePointer() != mNodePointer) {
- if (mWebView.nativeCursorNodePointer() == mNodePointer) {
- // remove cursor so character doesn't go back to this view
+ if (mWebView.nativeFocusNodePointer() != 0) {
mWebView.nativeClearCursor();
}
// Do not call remove() here, which hides the soft keyboard. If
@@ -152,7 +152,7 @@
// After a jump to next textfield and the first key press, the cursor
// and focus will once again match, so reset this value.
mOkayForFocusNotToMatch = false;
-
+ mResendKeyDown = false;
Spannable text = (Spannable) getText();
int oldLength = text.length();
// Normally the delete key's dom events are sent via onTextChanged.
@@ -188,7 +188,7 @@
}
// Center key should be passed to a potential onClick
if (!down) {
- mWebView.shortPressOnTextField();
+ mWebView.centerKeyPressOnTextField();
}
// Pass to super to handle longpress.
return super.dispatchKeyEvent(event);
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java
index 87cc492..fabaf8c 100644
--- a/core/java/android/webkit/WebView.java
+++ b/core/java/android/webkit/WebView.java
@@ -2834,10 +2834,7 @@
public boolean performLongClick() {
if (mNativeClass != 0 && nativeCursorIsTextInput()) {
// Send the click so that the textfield is in focus
- // FIXME: When we start respecting changes to the native textfield's
- // selection, need to make sure that this does not change it.
- mWebViewCore.sendMessage(EventHub.CLICK, nativeCursorFramePointer(),
- nativeCursorNodePointer());
+ centerKeyPressOnTextField();
rebuildWebTextView();
}
if (inEditingMode()) {
@@ -3380,6 +3377,7 @@
rebuildWebTextView();
// Now we need to pass the event to it
if (inEditingMode()) {
+ mWebTextView.mResendKeyDown = true;
return mWebTextView.onKeyDown(keyCode, event);
}
} else if (nativeHasFocusNode()) {
@@ -3467,20 +3465,20 @@
if (!nativeCursorIntersects(visibleRect)) {
return false;
}
- nativeSetFollowedLink(true);
nativeUpdatePluginReceivesEvents();
WebViewCore.CursorData data = cursorData();
mWebViewCore.sendMessage(EventHub.SET_MOVE_MOUSE, data);
playSoundEffect(SoundEffectConstants.CLICK);
- boolean isTextInput = nativeCursorIsTextInput();
- if (isTextInput || !mCallbackProxy.uiOverrideUrlLoading(
- nativeCursorText())) {
+ if (nativeCursorIsTextInput()) {
+ rebuildWebTextView();
+ centerKeyPressOnTextField();
+ return true;
+ }
+ nativeSetFollowedLink(true);
+ if (!mCallbackProxy.uiOverrideUrlLoading(nativeCursorText())) {
mWebViewCore.sendMessage(EventHub.CLICK, data.mFrame,
nativeCursorNodePointer());
}
- if (isTextInput) {
- rebuildWebTextView();
- }
return true;
}
@@ -4707,12 +4705,15 @@
nativeTextInputMotionUp(x, y);
}
- /*package*/ void shortPressOnTextField() {
- if (inEditingMode()) {
- View v = mWebTextView;
- int x = viewToContentX((v.getLeft() + v.getRight()) >> 1);
- int y = viewToContentY((v.getTop() + v.getBottom()) >> 1);
- nativeTextInputMotionUp(x, y);
+ /**
+ * Called when pressing the center key or trackball on a textfield.
+ */
+ /*package*/ void centerKeyPressOnTextField() {
+ mWebViewCore.sendMessage(EventHub.CLICK, nativeCursorFramePointer(),
+ nativeCursorNodePointer());
+ // Need to show the soft keyboard if it's not readonly.
+ if (!nativeCursorIsReadOnly()) {
+ displaySoftKeyboard(true);
}
}
@@ -4949,6 +4950,7 @@
int select = nativeFocusCandidateIsTextField() ?
nativeFocusCandidateMaxLength() : 0;
setSelection(select, select);
+ mWebTextView.mOkayForFocusNotToMatch = false; // only once
}
}
WebViewCore.JSKeyData arg = new WebViewCore.JSKeyData();
@@ -5788,6 +5790,7 @@
/* package */ native boolean nativeCursorMatchesFocus();
private native boolean nativeCursorIntersects(Rect visibleRect);
private native boolean nativeCursorIsAnchor();
+ private native boolean nativeCursorIsReadOnly();
private native boolean nativeCursorIsTextInput();
private native Point nativeCursorPosition();
private native String nativeCursorText();
diff --git a/core/java/com/android/internal/view/BaseIWindow.java b/core/java/com/android/internal/view/BaseIWindow.java
index 38ef0c2..2674262 100644
--- a/core/java/com/android/internal/view/BaseIWindow.java
+++ b/core/java/com/android/internal/view/BaseIWindow.java
@@ -1,6 +1,7 @@
package com.android.internal.view;
import android.graphics.Rect;
+import android.os.Bundle;
import android.os.ParcelFileDescriptor;
import android.os.RemoteException;
import android.view.IWindow;
@@ -101,4 +102,14 @@
}
}
}
+
+ public void dispatchWallpaperCommand(String action, int x, int y,
+ int z, Bundle extras, boolean sync) {
+ if (sync) {
+ try {
+ mSession.wallpaperCommandComplete(asBinder(), null);
+ } catch (RemoteException e) {
+ }
+ }
+ }
}
diff --git a/core/res/res/layout/screen_title_icons.xml b/core/res/res/layout/screen_title_icons.xml
index 4d7a6c8..5415909 100644
--- a/core/res/res/layout/screen_title_icons.xml
+++ b/core/res/res/layout/screen_title_icons.xml
@@ -66,22 +66,25 @@
android:layout_toLeftOf="@id/progress_circular"
android:layout_toRightOf="@android:id/left_icon"
>
+ <TextView android:id="@android:id/title"
+ style="?android:attr/windowTitleStyle"
+ android:layout_width="0dip"
+ android:layout_height="fill_parent"
+ android:layout_weight="1"
+ android:background="@null"
+ android:fadingEdge="horizontal"
+ android:scrollHorizontally="true"
+ android:gravity="center_vertical"
+ android:layout_marginRight="2dip"
+ />
<!-- 2dip between the icon and the title text, if icon is present. -->
<ImageView android:id="@android:id/right_icon"
android:visibility="gone"
android:layout_width="16dip"
android:layout_height="16dip"
+ android:layout_weight="0"
android:layout_gravity="center_vertical"
android:scaleType="fitCenter"
- android:layout_marginRight="2dip" />
- <TextView android:id="@android:id/title"
- style="?android:attr/windowTitleStyle"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@null"
- android:fadingEdge="horizontal"
- android:scrollHorizontally="true"
- android:gravity="center_vertical"
/>
</LinearLayout>
</RelativeLayout>
diff --git a/docs/html/guide/appendix/api-levels.jd b/docs/html/guide/appendix/api-levels.jd
index 3158192..b3b6371 100644
--- a/docs/html/guide/appendix/api-levels.jd
+++ b/docs/html/guide/appendix/api-levels.jd
@@ -83,6 +83,7 @@
<table>
<tr><th>Platform Version</th><th>API Level</th></tr>
+ <tr><td>Android 2.0</td><td>5</td></tr>
<tr><td>Android 1.6</td><td>4</td></tr>
<tr><td>Android 1.5</td><td>3</td></tr>
<tr><td>Android 1.1</td><td>2</td></tr>
@@ -115,6 +116,11 @@
<ul>
<li><code>android:minSdkVersion</code> — Specifies the minimum API Level
on which the application is able to run. The default value is "1".</li>
+<li><code>android:targetSdkVersion</code> — Specifies the API Level
+on which the application is designed to run. In some cases, this allows the
+application to use manifest elements or behaviors defined in the target
+API Level, rather than being restricted to using only those defined
+for the minimum API Level.</li>
<li><code>android:maxSdkVersion</code> — Specifies the maximum API Level
on which the application is able to run.</li>
</ul>
@@ -146,7 +152,7 @@
<pre><manifest>
...
- <uses-sdk android:minSdkVersion="4" />
+ <uses-sdk android:minSdkVersion="5" />
...
</manifest></pre>
@@ -288,23 +294,26 @@
<h2 id="provisional">Using a Provisional API Level</h2>
-<p>During an "Early Look" SDK release, the APIs may not be final, so the API Level integer
-will not be specified. You must instead use a provisional API Level in your application
-manifest in order to build applications against the Early Look platform. In this case,
-the provisional API Level is not an integer, but a string matching the codename of the
-unreleased platform version (for example, "Eclair"). The provisional API Level will be specified
-in the Early Look SDK release notes and is case-sensitive.</p>
+<p>In some cases, an "Early Look" Android SDK platform may be available. To let
+you begin developing on the platform although the APIs may not be final, the
+platform's API Level integer will not be specified. You must instead use the
+platform's <em>provisional API Level</em> in your application manifest, in order
+to build applications against the platform. A provisional API Level is not an
+integer, but a string matching the codename of the unreleased platform version.
+The provisional API Level will be specified in the release notes for the Early
+Look SDK release notes and is case-sensitive.</p>
-<p>The use of a provisional API Level is designed to protect developers
-and device users from inadvertently publishing or installing applications based on the
-Early Look framework API, which may not run properly on actual devices running the final
-system image.</p>
+<p>The use of a provisional API Level is designed to protect developers and
+device users from inadvertently publishing or installing applications based on
+the Early Look framework API, which may not run properly on actual devices
+running the final system image.</p>
-<p>The provisional API Level will only be valid while using the Early Look SDK to run
-applications in the emulator. An application using the provisional API Level can never be
-installed on an Android device. When the final SDK is released, you must replace any
-instances of the provisional API Level in your application manifest with the final
-API Level integer.</p>
+<p>The provisional API Level will only be valid while using the Early Look SDK
+and can only be used to run applications in the emulator. An application using
+the provisional API Level can never be installed on an Android device. At the
+final release of the platform, you must replace any instances of the provisional
+API Level in your application manifest with the final platform's actual API
+Level integer.</p>
<h2 id="filtering">Filtering the Reference Documentation by API Level</h2>
diff --git a/docs/html/guide/developing/eclipse-adt.jd b/docs/html/guide/developing/eclipse-adt.jd
index c3ec2e5..667aa9f 100644
--- a/docs/html/guide/developing/eclipse-adt.jd
+++ b/docs/html/guide/developing/eclipse-adt.jd
@@ -38,12 +38,12 @@
<p>To begin developing Android applications in the Eclipse IDE with ADT, you first need to
download the Eclipse IDE and then download and install the ADT plugin. To do so, follow the
-steps given in <a href="{@docRoot}sdk/{@sdkCurrent}/installing.html#installingplugin">Installing
+steps given in <a href="{@docRoot}sdk/eclipse-adt.html#installing">Installing
the ADT Plugin</a>.</p>
<p>If you are already developing applications using a version of ADT earlier than 0.9, make
sure to upgrade to the latest version before continuing. See the guide to
-<a href="{@docRoot}sdk/{@sdkCurrent}/upgrading.html#UpdateAdt">Updating Your Eclipse ADT Plugin</a>.</p>
+<a href="{@docRoot}sdk/eclipse-adt.html#updating">Updating Your ADT Plugin</a>.</p>
<p class="note"><strong>Note:</strong> This guide assumes you are using the latest version of
the ADT plugin. While most of the information covered also applies to previous
diff --git a/docs/html/guide/developing/tools/othertools.jd b/docs/html/guide/developing/tools/othertools.jd
index b4c4cf3..00f0b8d6 100644
--- a/docs/html/guide/developing/tools/othertools.jd
+++ b/docs/html/guide/developing/tools/othertools.jd
@@ -26,14 +26,14 @@
<li>Create and update Android projects. See
<a href="{@docRoot}guide/developing/other-ide.html">Developing in Other IDEs</a>.</li>
<li>Update your Android SDK with new platforms, add-ons, and documentation. See
- <a href="{@docRoot}guide/developing/updating-sdk.html">Updating Your SDK</a>.</li>
+ <a href="{@docRoot}sdk/adding-components.html">Adding SDK Components</a>.</li>
</ul>
<p>If you develop in Eclipse with the ADT plugin, you can perform
these tasks directly from the IDE. To create
Android projects and AVDs from Eclipse, see <a href="{@docRoot}guide/developing/eclipse-adt.html">Developing
In Eclipse</a>. To update your SDK from Eclipse, see
-<a href="{@docRoot}guide/developing/updating-sdk.html">Updating Your SDK</a>.
+<a href="{@docRoot}sdk/adding-components.html">Adding SDK Components</a>.
</p>
diff --git a/docs/html/guide/guide_toc.cs b/docs/html/guide/guide_toc.cs
index 264fe54..e2acc4f 100644
--- a/docs/html/guide/guide_toc.cs
+++ b/docs/html/guide/guide_toc.cs
@@ -98,7 +98,7 @@
</li>
<li class="toggle-list">
<div><a href="<?cs var:toroot ?>guide/topics/resources/index.html">
- <span class="en">Resources and Assests</span>
+ <span class="en">Resources and Assets</span>
</a></div>
<ul>
<li><a href="<?cs var:toroot ?>guide/topics/resources/resources-i18n.html">
@@ -325,6 +325,9 @@
<span class="zh-TW">最佳實務</span>
</h2>
<ul>
+ <li><a href="<?cs var:toroot ?>guide/practices/screens_support.html">
+ <span class="en">Supporting Multiple Screens</span>
+ </a></li>
<li class="toggle-list">
<div><a href="<?cs var:toroot ?>guide/practices/ui_guidelines/index.html">
<span class="en">UI Guidelines</span>
@@ -344,6 +347,8 @@
</a></li>
</ul>
</li>
+ </ul>
+ <ul>
<li><a href="<?cs var:toroot ?>guide/practices/design/performance.html">
<span class="en">Designing for Performance</span>
</a></li>
diff --git a/docs/html/guide/practices/screens_support.jd b/docs/html/guide/practices/screens_support.jd
new file mode 100644
index 0000000..1d16d88
--- /dev/null
+++ b/docs/html/guide/practices/screens_support.jd
@@ -0,0 +1,1317 @@
+page.title=Supporting Multiple Screens
+
+@jd:body
+
+<div id="qv-wrapper">
+<div id="qv">
+
+ <h2>Multiple screens quickview: </h2>
+ <ul>
+ <li>Android runs on devices that have different screen sizes and resolutions.</li>
+ <li>The screen on which your application is displayed can affect its user interface.</li>
+ <li>The platform handles most of the work of adapting your app to the current screen.</li>
+ <li>You can create screen-specific resources for precise control of your UI, if needed. </li>
+ <li>Older applications run in a compatibility mode that provides best-effort rendering on the current screen.</li>
+ <li>It's important to follow the best practices described in this document and test your application in all supported screens. </li>
+ </ul>
+
+ <h2>In this document</h2>
+ <ol>
+ <li><a href="#overview">Overview of Screen Support</a></li>
+ <ol>
+ <li><a href="#range">Range of screens supported</a></li>
+ <li><a href="#support">How Android supports multiple screens</a></li>
+ <li><a href="#density-independence">Density independence</a></li>
+ <li><a href="#attrs">Manifest attributes</a></li>
+ <li><a href="#qualifiers">Resource qualifiers</a></li>
+ </ol>
+ <li style="padding-top:4px;"><a href="#screen-independence">Best Practices for Screen Independence</a></li>
+ <li><a href="#strategies">Strategies for Legacy Apps</a></li>
+ <li><a href="#testing">How to Test Your App</a></li>
+
+ </ol>
+
+ <h2>See Also</h2>
+ <ol>
+ <li><code><a href="{@docRoot}guide/topics/manifest/supports-screens-element.html"><supports-screens></a></code></li>
+ <li><code><a href="{@docRoot}guide/topics/manifest/uses-sdk-element.html"><uses-sdk></a></code></li>
+ <li><a href="{@docRoot}guide/topics/resources/resources-i18n.html#AlternateResources">Alternate Resources</a></li>
+ <li><a href="{@docRoot}guide/developing/tools/avd.html">Android Virtual Devices</a></li>
+ </ol>
+
+</div>
+</div>
+
+<p>Android is designed to run on a variety of devices that offer a range of
+screen sizes and resolutions. For applications, the platform provides a
+consistent environment across devices and handles much of the complexity of
+adapting an application's UI to the screen on which it is being displayed. At
+the same time, the platform exposes APIs that give application developers
+precise control over their application's UI when displayed on specific screen
+sizes and resolutions. </p>
+
+<p>This document explains the screens-support features provided by the platform
+and how you use them in your application. By following the practices described
+here, you can easily create an application that displays properly on all
+supported device screens and that you can deploy to any device as a single .apk.
+</p>
+
+<p>If you have already developed and published an application for Android 1.5 or
+earlier, you should read this document and consider how you may need to adapt
+your application for proper display on new devices that offer different screens
+and that are running Android 1.6 or later. In most cases, only minor adjustments
+are needed, however you should make sure to <a href="#testing">test your
+application</a> on all supported screens. </p>
+
+<p>In particular, if you have an existing application that you would like to
+make available for users of devices with small screens (such as QVGA), please
+see <a href="#strategies">Strategies for Legacy Applications</a> for more
+information about how to do that. </p>
+
+
+<h2 id="overview">Overview of Screens Support</h2>
+
+<p>The sections below provide an overview of the Android platform's support for
+multiple screens, including an introduction to terms and concepts used in this
+document and in the API, a summary of the screen configurations that the
+platform supports, and an overview of the API and underlying
+screen-compatibility features.</p>
+
+
+<h3>Terms and Concepts</h3>
+
+<dl>
+<dt><em>Screen size</em></dt>
+ <dd>Actual physical size, measured as the screen's diagonal.
+
+ <p>For simplicity, Android collapses all actual screen sizes into three
+generalized sizes: large, normal, and small. Applications can provide custom
+layouts for each of these three sizes — the platform transparently handles
+the rendering of the layouts at the actual screen size.</p></dd>
+
+<dt><em>Aspect ratio</em></dt>
+ <dd>The porportional relationship of the screen's physical width to its
+height. Applications can provide layout resources for specific aspect ratios by
+using the resource qualifiers <code>long</code> and <code>notlong</code>. </dd>
+
+<dt><em>Resolution</em></dt>
+ <dd>The total number of physical pixels on a screen. Note that, although
+resolution is often expressed as <em>width</em> x <em>height</em>, resolution
+does not imply a specific aspect ratio. In Android, applications do not work
+directly with resolution.</dd>
+
+<dt><em>Density</em></dt>
+ <dd>Based on the screen resolution, the spread of pixels across the physical
+width and height of the screen.
+
+ <p>A screen with lower density has fewer available pixels spread across the
+screen width and height, where a screen with higher density has more —
+sometimes significantly more — pixels spread across the same area. The
+density of a screen is important because, other things being equal, a UI element
+(such as a button) whose height and width are defined in terms of screen pixels
+will appear larger on the lower density screen and smaller on the higher density
+screen. </p>
+
+ <p>For simplicity, Android collapses all actual screen densities into three
+generalized densities: high, medium, and low. Applications can provide custom
+resources for each of these three densities — the platform handles the
+scaling of the resources up or down to meet the actual screen density. </p></dd>
+<dt><em>Density independent pixel (dip)</em></dt>
+ <dd>A virtual pixel unit that applications can use in defining their UI, to
+express layout dimensions or position in a density-independent way.
+ <p>The density-independent pixel is equivalent to one physical pixel on a 160
+dpi screen, the baseline density assumed by the platform (as described later in
+this document). At run time, the platform transparently handles any scaling of
+the dip units needed, based on the actual density of the screen in use. The
+conversion of dip units to screen pixels is simple: <code>pixels = dips *
+(density / 160)</code>. For example, on 240 dpi screen, 1 dip would equal 1.5
+physical pixels. Using dip units to define your application's UI is highly
+recommended, as a way of ensuring proper display of your UI on different
+screens. </p></dd>
+</dl>
+
+
+<h3 id="range">Range of Screens Supported</h3>
+
+<p>Android 1.5 and earlier versions of the platform were designed to support a
+single screen configuration — HVGA (320x480) resolution on a 3.2" screen.
+Because the platform targeted just one screen, application developers could
+write their applications specifically for that screen, without needing to worry
+about how their applications would be displayed on other screens. </p>
+
+<p>Starting from Android 1.6, the platform adds support for multiple screen
+sizes and resolutions, reflecting the many new types and sizes of devices on
+which the platform will run. This means that developers must design their
+applications for proper display on a range of devices and screens.</p>
+
+<p>To simplify the way application developers design their user interfaces for
+multiple devices, and to allow more devices to participate without impacting
+applications, the platform divides the range of actual supported screen sizes
+and resolutions into:</p>
+
+<ul>
+<li>A set of three generalized sizes: <em>large</em>, <em>normal</em>, and <em>small</em>, and </li>
+<li>A set of three generalized densities: high (<em>hdpi</em>), medium (<em>mdpi</em>), and low (<em>ldpi</em>)
+</ul>
+
+<!--<p>Applications use to these generalized sizesThe to let you apply custom UI
+and enable/disable functionality according to the generalized class of screen,
+rather than by the specific screen. When you are developing your application,
+you use these generalized sizes and densities and Applications can use these
+generalized sizes and densities to tell the platform I will do it or you do it.
+Or a combination of both. -->
+
+<p>Applications can provide custom resources (primarily layouts) for any of the
+three generalized sizes, if needed, and they can also provide resources
+(primarily drawables such as images) for any of the three generalized densities.
+Applications do not need to work with the actual physical size or density of the
+device screen. At run time, the platform handles the loading of the correct size
+or density resources, based on the generalized size or density of the current
+device screen, and adapts them to the actual pixel map of the screen.</p>
+
+<p>The range of screens supported by Android and the generalized screen
+configurations that the platform maps them to are shown in the table below. </p>
+
+ <table id="screens-table" width="80%" style="margin-top:2em;">
+ <tbody>
+ <tr>
+ <td></td>
+ <td style="background-color:#f3f3f3">
+ <nobr>Low density (120), <em>ldpi</em></nobr>
+ </td>
+ <td style="background-color:#f3f3f3">
+ <nobr>Medium density (160), <em>mdpi</em></nobr>
+ </td>
+ <td style="background-color:#f3f3f3">
+ <nobr>High density (240), <em>hdpi</em><nobr>
+ </td>
+ </tr>
+ <tr>
+ <td style="background-color:#f3f3f3">
+ <em>Small</em> screen
+ </td>
+ <td style="font-size:.9em;">
+ <ul style="padding:0">
+ <li style="margin: 0 0 0 1em;padding:.25em 0 0 0; font-size:.9em;">QVGA (240x320), <nobr>2.6"-3.0" diagonal</nobr></li>
+ </ul>
+ </td>
+ <td></td>
+ <td></td>
+ </tr>
+ <tr>
+ <td style="background-color:#f3f3f3">
+ <em>Normal</em> screen
+ </td>
+ <td style="font-size:.9em;">
+ <ul style="padding:0">
+ <li style="margin: 0 0 0 1em;padding:.25em 0 0 0; font-size:.9em;">WQVGA (240x400), <nobr>3.2"-3.5" diagonal</nobr></li>
+ <li style="margin: 0 0 0 1em;padding:.25em 0 0 0; font-size:.9em;">FWQVGA (240x432), <nobr>3.5"-3.8" diagonal</nobr></li>
+ </ul>
+ </td>
+ <td style="font-size:.9em;background-color:#FFE;">
+ <ul style="padding:0">
+ <li style="margin: 0 0 0 1em;padding:.25em 0 0 0; font-size:.9em;">HVGA (320x480), <nobr>3.0"-3.5" diagonal</nobr></li>
+ </ul>
+ </td>
+ <td style="font-size:.9em;">
+ <ul style="padding:0">
+ <li style="margin: 0 0 0 1em;padding:.25em 0 0 0; font-size:.9em;">WVGA (480x800), <nobr>3.3"-4.0" diagonal</nobr></li>
+ <li style="margin: 0 0 0 1em;padding:.25em 0 0 0; font-size:.9em;">FWVGA (480x854), <nobr>3.5"-4.0" diagonal</nobr></li>
+ </ul>
+ </td>
+ </tr>
+ <tr>
+ <td style="background-color:#f3f3f3">
+ <em>Large</em> screen
+ </td>
+ <td></td>
+ <td style="font-size:.9em;">
+ <ul style="padding:0">
+ <li style="margin: 0 0 0 1em;padding:.25em 0 0 0; font-size:.9em;">WVGA (480x800), <nobr>4.8"-5.5" diagonal</nobr></li>
+ <li style="margin: 0 0 0 1em;padding:.25em 0 0 0; font-size:.9em;">FWVGA (480x854), <nobr>5.0"-5.8" diagonal</nobr></li>
+ </ul>
+ </td>
+ <td></td>
+ </tr>
+ </tbody>
+ </table>
+
+<p class="caption" style="margin-top:1em;margin-bottom:1.5em;"><strong>Table
+1.</strong> Summary of device screens supported by Android. </p>
+
+<p>As shown above, the various screen configurations are arranged around a
+baseline screen — HVGA (320x480) resolution on a 3.2" screen — which
+is assigned a size of "normal" and a density of "medium". The HVGA screen is
+used as the baseline because all applications written against Android 1.5 or
+earlier are (by definition) written for the HVGA screen used on the T-Mobile G1
+and similar devices.</p>
+
+<!-- <p>Note that each screen configuration spans a range of actual resolutions
+and physical screen sizes. For example, the The baseline configuration spans a
+range of actual screen sizes — from 3.0" to 3.5" diagonal — all with
+the same HVGA resolution. That means that the actual pixel density of devices in
+a single screen configuration can vary. </p>
+
+Because differences in density can affect the displayed size of UI elements
+declared in pixels, the framework provides a density-independent pixel (dip)
+unit that applications can use to declare UI dimensions, letting the platform
+automatically handle the scaling to the actual pixel density of the screen. When
+UI dimensions are declared in dip, the result is that they are displayed at the
+same physical size on all screens in a given configuration. </p> -->
+
+<p>Although the platform currently supports the nine possible size-density
+configurations listed in the table, you do not necessarily need to custom
+resources for each one of them. The platform provides robust compatibility
+features, described in the sections below, that can handle most of the work of
+rendering your application on the current device screen, provided that the UI is
+properly implemented. For more information, see <a
+href="#screen-independence">Best Practices for Screen Independence</a>.</p>
+
+
+<h3 id="support">How Android supports multiple screens</h3>
+
+<div class="sidebox-wrapper">
+<div class="sidebox">
+<h2>Using the alternate resources framework</h2>
+
+<p>The platform's support for loading screen size- and density-specific
+resources at run time is based on the alternate resources framework.
+
+<p> If you want to use size- or density-specific layouts or drawables in your
+application and you are not familiar with resource qualifiers or how the
+platform uses them, please read
+<a href="{@docRoot}guide/topics/resources/resources-i18n.html#AlternateResources">
+Alternate Resources</a>.
+</div>
+</div>
+
+<p>The foundation of Android's support for multiple screens is a set of built-in
+compatibility features that together manage the rendering of application
+resources in an appropriate way for the current device screen. The platform
+handles most of the work of rendering your application, but also gives you two
+key ways to control the way your application is displayed, if you need or want
+to use them:</p>
+
+<ul>
+ <li>The platform provides a set of resource qualifiers that let you provide
+size- and density-specific resources, if needed. The qualifiers for
+size-specific resources are <code>large</code>, <code>normal</code>, and
+<code>small</code>, and those for density-specific resources are
+<code>hdpi</code> (high), <code>mdpi</code> (medium), and <code>ldpi</code>
+(low). The qualifiers correspond to the generalized densities given in
+<a href="#range">Table 1</a>, above.</li>
+ <li>The platform also provides a
+<a href="{@docRoot}guide/topics/manifest/supports-screens-element.html">
+<code><supports-screens></code></a>
+element, whose attributes
+<code>android:largeScreens</code>, <code>android:normalScreens</code>, and
+<code>android:smallScreens</code> let you specify what generalized screen sizes
+your application supports. A fourth attribute, <code>android:anyDensity</code>,
+lets you indicate whether or not your application includes built-in support for
+multiple densities.</li>
+</ul>
+
+<p>At run time, the platform provides three types of support to your
+application, to ensure the best possible display on the current device
+screen:</p>
+
+<ol>
+<li><em>Pre-scaling of resources (such as image assets)</em>
+
+ <p>Based on the density of the current screen, the platform automatically
+loads any size- or density-specific resources from your application and displays
+them without scaling. If no matching resources are available, the platform loads
+the default resources and scales them up or down as needed to match the current
+screen's generalized density. The platform assumes that default resources are
+designed for proper display at the baseline screen density of "medium" (160),
+unless they are loaded from a density-specific resource directory.</p>
+
+ <p>For example, if the current screen's density is "high", the platform loads
+resources that are tagged with the qualifier <code>hdpi</code> and uses them
+without scaling. If no such resources are available, the platform uses the
+default resources instead, scaling them from the baseline density ("medium") to
+"high". </p>
+
+ <p>For more information about how to create size- and density-specific
+resources, see <a href="#qualifiers">Resource qualifiers</a>.</p></li>
+
+<li><em>Auto-scaling of pixel dimensions and coordinates</em>
+
+ <p>If the application states that it does not support different screen
+densities, the platform auto-scales any absolute pixel coordinates, pixel
+dimension values, and pixel math used in the application (such as might be used
+for specifying the width or padding for a view). It does this to ensure that
+pixel-defined screen elements are displayed at approximately the same physical
+size as they would be at the baseline density of "medium" (160). The platform
+handles this scaling transparently to the application and also reports scaled
+overall pixel dimensions to the application, rather than physical pixel
+dimensions. </p>
+
+ <p>For instance, suppose a given device is using a WVGA high-denisty screen,
+which is 480x800 and about the same size as a traditional HVGA screen, but it's
+running an app that states that it does not support multiple densities. In this
+case, the system will "lie" to the application when it queries for screen
+dimensions, and report 320x533. Then, when the app does drawing operations, such
+as invalidating the rectangle from (10,10) to (100, 100), the system will
+likewise automatically transform the coordinates by scaling them the appropriate
+amount, and actually invalidate the region (15,15) to (150, 150). The same
+thing happens in the other direction, if the application is running on a
+lower-density screen, coordinates are scaled down.<p>
+
+ <p>For more information, see the <code>android:anyDensity</code> attribute in
+<a href="#attrs">Manifest attributes for screens support</a>.</p></li>
+
+<div class="sidebox-wrapper" xstyle="margin-bottom:2em;margin-top:.5em;width:90%;">
+ <img id="rule" src="{@docRoot}assets/images/grad-rule-qv.png">
+ <div id="qv-sub-rule">
+ <img src="{@docRoot}assets/images/icon_market.jpg" style="float:left;margin:0;padding:0;">
+ <p style="color:#669999;">Publishing to Small Screen Devices</p>
+ <p>To ensure the best experience for users on small-screen devices, Android
+Market only shows applications that explicitly declare support for small
+screens. If you developed an application on Android 1.5 or earlier and published
+it on Android Market, you need to <a href="#testing">test your application</a>
+on small screens and then upload an updated version that explicitly
+<a href="#attrs">indicates support for small screens</a>. </p>
+ </div>
+</div>
+
+<li><em>Compatibility-mode display on larger screen-sizes</em>
+
+ <p>If the current screen's size is larger than your application supports, as
+specified in the <code>supports-screens</code> element, the platform displays
+the application at the baseline size ("normal") and density ("medium). For
+screens larger than baseline, the platform displays the application in a
+baseline-sized portion of the overall screen, against a black background. </p>
+
+ <p>For instance, suppose a given device is using a WVGA medium density screen,
+classified as a "large" screen, but the application states that it does not
+support large screens; in this case, the system will again "lie" to the
+application when it queries for screen dimensions, and report 320x480. Instead
+of scaling the application, however, the application's 320x480 interface will be
+placed as a "postage stamp" in the larger 480x800 screen.</p>
+
+ <p>For more information, see the <code>android:anyDensity</code> attribute in
+<a href="#attrs">Manifest elements for screens support</a> and the
+<a href="#compatibility-examples">Screen-Compatibility Examples</a>
+section.</p></li>
+</ol>
+
+<p>In general, these compatibility features ensure that all applications,
+including those written against Android 1.5 and earlier platform versions, can
+display properly on most devices, especially when the device's screen is at the
+baseline "normal" size or larger. </p>
+
+<p>However, note that applications written for the baseline HVGA screen may need
+minor adjustments before they display properly on smaller screens such as QVGA.
+With the reduced screen area of small screens, there may be tradeoffs in design,
+content, and function that you, as the application developer, need to consider.
+For more information about how to prepare an existing application for display on
+small screens, see <a href="#strategies">Strategies for Legacy
+Applications</a>.</p>
+
+<p>The sections below provide more information how to take advantage of the
+platform's multiple-screens support. </p>
+
+
+<h3 id="density-independence">Density independence</h3>
+
+<p>The goal of density independence is to preserve the physical size, from the
+user's point of view, of user interface elements declared in an application,
+when the application is displayed on screens with different densities. Density
+independence applies to both layouts and drawables such as icons. Maintaining
+density-independence is important because, other things being equal, a UI
+element (such as a button) whose height and width are defined in terms of screen
+pixels will appear physically larger on the lower density screen and smaller on
+the higher density screen. Such density-related size changes can cause problems
+in application layout, usability, and consistency with other applications
+installed on the device.</p>
+
+<p>The platform provides density independence to applications by default. It
+does this in three ways: </p>
+
+<ul>
+<li>Through pre-scaling of drawable resources (scaled at resource loading
+time)</li>
+<li>Through auto-scaling of device-independent pixel (dip) values used in
+layouts</li>
+<li>Through auto-scaling of absolute pixel values used in the application (only
+needed if the application has set <code>android:anyDensity="false"</code> in its
+manifest)</li>
+</ul>
+
+<p>The example screens below illustrate the density independence provided by the
+platform. Note that both the layouts and launcher icons are displayed at the
+same physical sizes, although screen sizes, aspect ratios, and densities are
+different.</p>
+
+
+<div id=vi09 style=TEXT-ALIGN:left>
+<img src="{@docRoot}images/screens_support/dip.png" style="padding-bottom:0;margin-bottom:0;" />
+<p class="caption" style="margin:0 0 1.5em 1em;padding:0 0 0
+1em;"><strong>Figure 1.</strong> Examples of density independence on WVGA high
+density (left), HVGA medium density (center), and QVGA low density (right). </p>
+</div>
+
+<p>In most cases, you can take advantage of density independence in your
+application simply by making sure that your layouts specify all dimension values
+in density-independent pixels (<code>dip</code> or <code>dp</code>) or
+scale-independent pixels (<code>sip</code> or <code>sp</code>, for text only).
+If you are using absolute pixel values in the application and manifest includes
+<a href="#attrs"><code>android:anyDensity="true"</code></a>, you will also need
+to scale the pixel values. See <a href="#dips-pels">Converting from dips to
+pixels</a> for more information. </p>
+
+
+<h3 id="attrs">Manifest attributes for screens support</h3>
+
+<p> Android 1.6 introduced a new manifest element,
+<a href="{@docRoot}guide/topics/manifest/supports-screens-element.html"><code><supports-screens></code></a>,
+whose attributes you can use to control the
+display of your application on different classes of device screens, as listed
+below. The <code>smallScreens</code>, <code>normalScreens</code>, and
+<code>largeScreens</code> attributes correspond to the generalized screen sizes
+shown in <a href="#range">Table 1</a>, earlier in this document.</p>
+
+ <table id="vrr8">
+ <tr>
+ <th>
+ Attribute
+ </th>
+ <th >
+ Description
+ </th>
+ </tr>
+ <tr>
+ <td>
+ <code>android:smallScreens</code>
+ </td>
+ <td>
+ Whether or not the application UI is designed for use on
+<em>small</em> screens — "<code>true</code>" if it is, and
+"<code>false</code>" if not. See <a href="#defaults">Default values for
+attributes</a> for information about the assumed value of this attribute, if not
+declared.
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <code>android:normalScreens</code>
+ </td>
+ <td>
+ Whether or not the application UI is designed for use on
+<em>normal</em> screens — "<code>true</code>" if it is, and
+"<code>false</code>" if not. The default value is "<code>true</code>".
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <code>android:largeScreens</code>
+ </td>
+ <td>
+ Whether or not the application UI is designed for use on
+<em>large</em> screens — "<code>true</code>" if it is, and
+"<code>false</code>" if not. See <a href="#defaults">Default values for
+attributes</a> for information about the assumed value of this attribute, if not
+declared.
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <code>android:anyDensity</code>
+ </td>
+ <td>
+ <p>Whether or not the application is designed to manage its UI properly
+in different density environments — "<code>true</code>" if so, and
+"<code>false</code>" if not. </p>
+ <ul>
+ <li>If set to "<code>true</code>", the platform disables its
+density-compatibility features for all screen densities — specifically,
+the auto-scaling of absolute pixel units and math — and relies on the
+application to use density-independent pixel units and/or to manage the
+adaptation of pixel values according to density of the current screen. </li>
+
+ <li>If set to "<code>false</code>", the platform enables its
+density-compatibility features for all screen densities. In this case, the
+platform provides a scaled, virtual screen pixel map to the application, against
+which it can layout and draw its UI as though against a medium-density screen
+(160). The platform then transparently auto-scales the application's pixel units
+and math as needed to match the actual device screen density. </li>
+ </ul>
+ <p>See <a href="#defaults">Default values for attributes</a> for
+information about the assumed value of this attribute, if not declared.</p>
+ </td>
+ </tr>
+ </table>
+
+<p>In general, when you declare a screen-size attribute
+(<code>smallScreens</code>, <code>normalScreens</code>, or
+<code>largeScreens</code>) as "true", you are signaling to the platform that
+your application wants to manage its UI by itself, for all screen sizes, without
+the platform applying any size-compatibility behaviors (such as a virtual HVGA
+display area). If you declare a screen-size attribute as "false", you are
+signaling that your application is not designed for that screen size. The
+effects are conditioned by the screen size that your application does not
+support:</p>
+
+<ul>
+ <li>If you declare <code>largeScreens="false"</code>, your application can
+still be installed by users of devices with large screens. When run on a device
+with a large screen, this attribute value causes the platform to run the
+application in compatibility mode, rendering it in a baseline HVGA screen area
+(normal size, medium density) reserved on the larger screen. See
+<a href="#compatibility-examples">Screen-Compatibility Examples</a> for an
+illustration of what an application looks like when displayed in compatibility
+mode.</li>
+ <li>If you declare <code>smallScreens="false"</code>, your application can
+still be installed by users of devices with small screens. However, this
+attribute value causes Android Market to filter your application from the list
+of applications available to such users. In effect, this prevents users from
+installing the application on small-screen devices. </li>
+</ul>
+
+<p>If you declare the <code>android:anyDensity</code> attribute as "true", you
+are signaling to the platform that your application wants to manage its UI by
+itself, for all screen densities, using the actual screen dimensions and pixels.
+In this case, the application must ensure that it declares its UI dimensions
+using device-independent pixels and scales any actual pixel values or math by
+the scaling factor available from
+{@link android.util.DisplayMetrics#density android.util.DisplayMetrics.density}.</p>
+
+<p>Note that the setting of the <code>android:anyDensity</code> attribute does
+not affect the platform's pre-scaling of drawable resources, such as bitmaps and
+nine-patch images, which always takes place by default. </p>
+
+<p>The following example shows a manifest that declares support for large,
+normal, and small screens in any densities.</p>
+
+<pre><manifest xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <supports-screens
+ android:largeScreens="true"
+ android:normalScreens="true"
+ android:smallScreens="true"
+ android:resizable="true"
+ android:anyDensity="true" />
+ </manifest>
+</pre>
+
+<h4 id="defaults">
+ Default values for attributes
+</h4>
+
+<p>The default values for the <code><supports-screens></code> attributes
+differs, depending on the the value of the
+<a href="{@docRoot}guide/topics/manifest/uses-sdk-element.html"><code>android:minSdkVersion</code></a>
+ attribute in the application's manifest, as well as on
+the value of <code>android:targetSdkVersion</code>, if declared:</p>
+
+<div>
+ <ul>
+ <li>
+ If <code>android:minSdkVersion</code> or
+<code>android:targetSdkVersion</code> is "3" (Android 1.5) or lower, the default
+value for everything except android:normalScreens is <code>false</code>. If you
+are primarily targeting pre-Android 1.6 platforms but also want to support other
+densities/screen sizes, you need to set the appropriate attributes to
+<code>true</code>.
+ </li>
+ <li>
+ If <code>android:minSdkVersion</code> or
+<code>android:targetSdkVersion</code> is "4" (Android 1.6) or higher, the
+default value for everything is <code>true</code>. If your application
+requires <span style=BACKGROUND-COLOR:#ffffff>Android 1.6 </span>features,
+but does not support these densities and/or screen sizes, you need to set the
+appropriate attributes to <code>false</code>.
+ </li>
+ <li>
+ Note that <code>android:normalScreens</code> always defaults to
+<code>true</code>.
+ </li>
+ </ul>
+</div>
+
+
+<h3 id="qualifiers">Resource directory qualifiers for screen size and density</h3>
+
+<p>Android supports resource directory qualifiers for controlling the selection
+of resources based on the characteristics of the screen on which your application
+is running. You can use these qualifiers to provide size- and density-specific
+resources in your application. For more information about the generalized sizes
+and densities that correspond to the qualifiers, see <a href="#range">Table
+1</a>, earlier in this document.</p>
+
+<table>
+<tr>
+<th>Screen characteristic</th>
+<th>Qualifier</th>
+<th>Description</th>
+</tr>
+
+<tr>
+ <td rowspan="3">Size</td>
+ <td><code>small</code></td>
+ <td>Resources for small screens, such as QVGA low density.</td>
+</tr>
+<tr>
+ <td><code>normal</code></td>
+ <td>Resources for normal (baseline configuration) screens, such as T-Mobile
+G1/HTC Magic screen size, or equivalent.</td>
+</tr>
+<tr>
+<td><code>large</code></td>
+<td>Resources for large screens. Typical example is a tablet like device.</td>
+</tr>
+
+<tr>
+<td rowspan="4">Density</td>
+<td><code>ldpi</code></td>
+<td>Low-density resources, for 100 to 140 dpi screens.</td>
+</tr>
+<tr>
+<td><code>mdpi</code></td>
+<td>Medium-density resources for 140 to 180 dpi screens.</td>
+</tr>
+<tr>
+<td><code>hdpi</code></td>
+<td>High-density resources for 190 to 250 dpi screens.</td>
+</tr>
+<tr>
+<td><code>nodpi</code></td>
+<td>Density-independent resources. The platform does not auto-scale resources
+tagged with this qualifier, regardless of the current screen's density.</td>
+</tr>
+
+<tr>
+<td rowspan="2">Aspect ratio</td>
+<td><code>long</code></td>
+<td>Resources for screens of any size or density that have a significantly
+taller (in portrait mode) and wider (in landscape mode) aspect ratio than the
+baseline screen configuration.</td>
+</tr>
+<tr>
+<td><code>notlong</code></td>
+<td>Resources for use only on screens that have an aspect ratio that is similar
+to the baseline screen configuration.</td>
+</tr>
+<tr>
+<td>Platform version</td>
+<td><nobr><code>v<api-level></code></nobr></td>
+<td>Resources that are for use only on a specific API Level or higher. For
+example, if your application is designed to run on both Android 1.5 (API Level
+3) and Android 1.6 (API Level 4 and higher), you can use the <code>-v4</code>
+qualifier to tag any resources that should be excluded when your application is
+running on Android 1.5 (API Level 3). Using the version qualifier is necessary
+in some cases, if the older platform is inadvertently loading resources from a
+directory containing resources for a newer platform. </td>
+</tr>
+</table>
+
+<p>
+Note that the density and the screen size are independent parameters and are
+interpreted by the system individually. For example, WVGA high density is
+considered a normal screen because its physical size is about the same as one of
+T-Mobile G1. On the other hand, a WVGA medium density screen is considered a
+<i>large</i> screen — it offers the same resolution but at lower pixel
+density, meaning that it is both physically larger than the baseline screen and
+can display significantly more information than a normal screen size.
+</p>
+
+<p>Here is an example of the resource directory structure of an application that
+supports low and high density, and employs different layout schemes.</p>
+
+<pre>res/layout/my_layout.xml // layout for normal screen size
+res/layout-small/my_layout.xml // layout for small screen size
+res/layout-large/my_layout.xml // layout for large screen size
+res/layout-large-land/my_layout.xml // layout for large screen size in landscape mode
+
+res/drawable-ldpi/my_icon.png // icon image for low density
+res/drawable-mdpi/dpi/my_icon.png // icon for medium density
+res/drawable-hdpi/my_icon.png // icon image for high density
+
+res/drawable-nodpi/composite.xml // density independent resource
+</pre>
+
+<p>For more information about how to use resource qualifiers or how the platform
+selects them, please read
+<a href="{@docRoot}guide/topics/resources/resources-i18n.html#AlternateResources">
+Alternate Resources</a>.</p>
+
+
+<h2 id="screen-independence">Best practices for Screen Independence</h2>
+
+<p>The objective of supporting multiple screens is to create an application that
+can run properly on any display and function properly on any of the screen
+configurations listed in <a href="#range">Table 1</a> earlier in this document.
+</p>
+
+<p>You can easily ensure that your application will display properly on
+different screens. Here is a quick checklist:</p>
+
+<ol>
+ <li>
+ Prefer wrap_content, fill_parent and the dip unit to px in XML layout files
+ </li>
+ <li>
+ Avoid AbsoluteLayout
+ </li>
+ <li>
+ Do not use hard coded pixel values in your code
+ </li>
+ <li>
+ Use density and/or resolution specific resources
+ </li>
+</ol>
+
+<h3 id="use-relative">1. Prefer wrap_content, fill_parent and the dip unit to
+absolute pixels<br> </h3>
+
+<p>When defining the <code>layout_width</code> and <code>layout_height</code> of
+views in an XML layout file, using <code>wrap_content</code>,
+<code>fill_parent</code> or the <code>dip</code> will guarantee that the view is
+given an appropriate size on the current device screen. For instance, a view
+with a <code>layout_width="100dip"</code> will measure 100 pixels wide on an
+HVGA@160 density display and 150 pixels on a WVGA@240 density display, but the
+view will occupy approximately the same physical space. </p>
+
+<p>Similarly, you should prefer the <code>sp</code> (scale-independent pixel,
+the scale factor depends on a user setting) or <code>dip</code> (if you don't
+want to allow the user to scale the text) to define font sizes.</p>
+
+<h3 id="avoid-absolute">2. Avoid AbsoluteLayout </h3>
+
+<p>{@link android.widget.AbsoluteLayout AbsoluteLayout}
+is one of the layout containers offered by the Android UI toolkit. Unlike the
+other layouts however, <code>AbsoluteLayout</code> enforces the use of fixed
+positions which might easily lead to user interfaces that do not work well on
+different displays. Because of this, <code>AbsoluteLayout</code> was deprecated
+in Android 1.5 (API Level 3). </p>
+
+<p>You can achieve much the same layout by using a
+{@link android.widget.FrameLayout FrameLayout} instead, and setting
+<code>layout_margin</code> attributes of the children. This approach is more
+flexible and will yield better results on different screens.</p>
+
+<h3>3. Do not use hard-coded pixel values in your code</h3>
+
+<p>For performance reasons and to keep the code simpler, the Android framework
+API uses pixels as the standard unit for expressing dimension or coordinate
+values. That means that the dimensions of a View are always expressed in the
+code in pixels. For instance, if <code>myView.getWidth()</code> returns 10, the
+view is 10 pixels wide. In some cases, you may need to scale the pixel values
+that you use in your code. The sections below provide more information. </p>
+
+<h4 id="dips-pels">Converting from dips to pixels</h4>
+
+<p>In some cases, you will need to express dimensions in <code>dip</code> and
+then convert them to pixels. Imagine an application in which a scroll gesture is
+recognized after the user's finger has moved by at least 16 pixels. On a
+baseline HVGA screen, the user will have to move his finger by 16 pixels / 160
+dpi = 1/10th of an inch (or 2.5 mm) before the gesture is recognized. On a
+device with a high (240) density display, the user will move his finger by only
+16 pixels / 240 dpi = 1/15th of an inch (or 1.7 mm.) The distance is much
+shorter and the application thus appears more sensitive to the user. To fix this
+issue, the gesture threshold must be expressed in the code in <code>dip</code>
+and then converted to actual pixels.</p>
+
+<pre>// The gesture threshold expressed in dip
+private static final float GESTURE_THRESHOLD_DIP = 16.0f;
+
+// Convert the dips to pixels
+final float scale = getContext().getResources().getDisplayMetrics().density;
+mGestureThreshold = (int) (GESTURE_THRESHOLD_DIP * scale + 0.5f);</span>
+
+// Use mGestureThreshold as a distance in pixels
+</pre>
+
+<p>The {@link android.util.DisplayMetrics#density android.util.DisplayMetrics.density}
+field specifies the the scale factor you must use to
+convert dips to pixels according to the current screen density. You can access
+the current screen's metrics through a <code>Context</code> or
+<code>Activity</code>. On a medium (160) density screen,
+<code>DisplayMetrics.density</code> equals "1.0", whereas on a high (240)
+density screen it equals "1.5". You can refer to the documentation of the
+{@link android.util.DisplayMetrics DisplayMetrics}
+class for details.</p>
+
+<h4>Use pre-scaled configuration values</h4>
+
+<p>The {@link android.view.ViewConfiguration ViewConfiguration} class can be
+used to access the most common distances, speeds, and times used in the Android
+framework. For instance, the distance in pixels used by the framework as the
+scroll threshold can be obtained as follows:</p>
+
+<pre>ViewConfiguration.get(aContext).getScaledTouchSlop()</pre>
+
+<p>Methods starting with the <code>getScaled</code> prefix are guaranteed to return a value in pixels that will display properly regardless of the current screen density.</p>
+
+<h3>4. Use density and/or size-specific resources</h3>
+
+<div style="float: right;background-color:#fff;margin: 0;padding: 20px 0 20px 20px;">
+<img src="{@docRoot}images/screens_support/scale-test.png" style="padding:0;margin:0;">
+<p class="caption" style="margin:0;padding:0;"><strong>Figure 2.</strong> Comparison of pre-scaled and auto-scaled bitmaps.</p>
+</div>
+
+<p>Even with the size- and density-compatibility features that the platform
+provides, you may still want to make adjustments to the UI of your application
+when it displayed on certain screen sizes or densities. You can do this by
+providing size- or density-specific resources — assets, layouts, strings,
+and so on. If you want, you can also take control over the scaling of images
+assets. The sections below provide more information.</p>
+
+<h4 id="resource-dirs">Custom resources and directories</h4>
+
+<p>If you need to control exactly how your application will look on various
+displays, simply adjust your assets and layouts in configuration-specific
+resources directories. For example, consider an icon that you want to display on
+medium and high density screens. Simply create your icon at two different sizes
+(for instance 100x100 for medium density and 150x150 for high density) and put
+the two variations in the appropriate directories, using the proper
+qualifiers:</p>
+
+<p style="margin-left:2em;"><code>res/drawable-mdpi/icon.png //
+for medium-density screens</code></p>
+
+<p style="margin-left:2em;"><code>res/drawable-hdpi/icon.png //
+for high-density screens</code></p>
+
+<p>If a density qualifier is not defined in a resource directory name, the
+platform assumes that the resources in that directory are designed for the
+baseline medium density. It is not recommended that you put density-specific
+resources such as images in the default directory.</p>
+
+<p>For more information about valid resource qualifiers, see
+<a href="#qualifiers">Resource directory qualifiers</a>, earlier in this
+document.</p>
+
+<h4 id="scaling">Pre-scaling and auto-scaling of bitmaps and nine-patches</h4>
+
+<p>When a bitmap or nine-patch image is loaded from the application's resources,
+the platform attempts to pre-scale it to match the display's density. For
+instance, if you placed a 100x100 icon in the <code>res/drawable/</code>
+directory and loaded that icon as a bitmap on a high-density screen, Android
+would automatically scale up the icon and produce a 150x150 bitmap.</p>
+
+<p>This pre-scaling mechanism works independently of the source. For instance,
+an application targeted for a high-density screen may have bitmaps only in the
+<code>res/drawable-hdpi/</code> directory. If one of the bitmaps is a 240x240
+icon and is loaded on a medium-density screen, the resulting bitmap will measure
+160x160.</p>
+
+<p>The platform pre-scales resources as needed, whether the application is
+running with density-compatibility features enabled or not (as specified by the
+value of <code>android:anyDensity</code>). However, when running with
+density-compatibility enabled, the platform continues to report the size of
+pre-scaled bitmaps and other resources as if they were loaded in a
+medium-density environment. For example, when density-compatibility is enabled,
+if you load a 76x76 image from the default resources for display on a
+high-density screen, the platform will pre-scale the image to 114x114
+internally. However, the API still reports the size of the image as 76x76. This
+discrepancy may cause unexpected behavior if your application somehow directly
+manipulates the scaled bitmap, but this was considered a reasonable trade-off to
+keep the performance of existing applications as good as possible.</p>
+
+<p>This does not apply for the case that an application creates an in-memory
+bitmap internally and draws something on it, for later display on the screen.
+The platform auto-scales such bitmaps on the fly, at draw time. Other side
+effects of such a case might be that fonts drawn in such a bitmap will be scaled
+at the bitmap level, when the off-screen bitmap is finally rendered to the
+display, resulting in scaling artifacts.</p>
+
+<p>There are situations in which you may not want Android to automatically scale
+a resource. The easiest way to accomplish this is to put it in a "nodpi"
+resource directory:</p>
+
+<p style="margin-left:2em;"><code>res/drawable-nodpi/icon.png</code></p>
+
+<p>You can also take complete control of the scaling mechanism by using the
+{@link android.graphics.BitmapFactory.Options BitmapFactory.Options} class,
+which lets you define whether you want the bitmap to be pre-scaled and what the
+density of the bitmap should be. For instance, if you are loading a bitmap from
+a web server, you may want to force the bitmap's density to be high density.
+When pre-scaling is disabled, the resulting bitmap is in auto-scaling mode. The
+bitmap is associated with a density (that you may or may not have specified
+through the <code>BitmapFactory.Options</code>) which will be used to scale the
+bitmap on screen <em>at drawing time</em>.
+
+<p>Using auto-scaling instead of pre-scaling is more CPU expensive than
+pre-scaling but uses less memory. You can refer to the documentation of
+{@link android.graphics.BitmapFactory BitmapFactory},
+{@link android.graphics.Bitmap Bitmap}, and
+{@link android.graphics.Canvas Canvas} for more
+information on auto-scaling.</p>
+
+<p>Figure 2, at right, demonstrates the results of the pre-scale and auto-scale
+mechanisms when loading low (120), medium (160) and high (240) density bitmaps
+on a baseline screen. The differences are subtle, because all of the bitmaps are
+being scaled to match the current screen density, however the scaled bitmaps
+have slightly different appearances depending on whether they are pre-scaled or
+auto-scaled at draw time.</p>
+
+<h2 id="strategies">Strategies for Legacy Applications</h2>
+
+<p>If you have already developed and published an Android application based on
+Android 1.5 or earlier platform version, you need to consider how you will adapt
+your application so that it is deployable to </p>
+
+<ul>
+<li>Existing devices, which may be running Android 1.5 (or lower) platform
+version, as well as to </li>
+<li>Newer devices that are running Android 1.6 (or higher) and offering various
+screen sizes and resolutions</li>
+</ul>
+
+<p>To support the newer devices and the different screens they use, you might
+need to make some changes in your app, but at the same time your app may be very
+stable and so you want to minimize the changes. There are a variety of ways that
+you can extend your existing application to support new devices with multiple
+screens <em>and</em> existing devices running older platform versions. You
+should be able to make these changes to your application such that you can
+distribute a single .apk to any and all devices.</p>
+
+<p>The recommended strategy is to develop against the most recent version of the
+platform you are targeting, and test on the minimum one you want to run on.
+Here's how to do that:</p>
+
+<ol>
+ <li>Maintain compatibility with existing devices by leaving your application's
+<code>android:minSdkVersion</code> attribute as it is. You <em>do not</em> need
+to increment the value of the attribute to support new devices and multiple
+screens. </li>
+ <li>Extend compatibility for Android 1.6 (and higher) devices by adding
+a new attribute — <code>android:targetSdkVersion</code> — to the
+<code>uses-sdk</code> element. Set the value of the attribute to
+"<code>4</code>". This allows your application to "inherit" the platform's
+multiple screens support, even though it is technically using an earlier version
+of the API. </li>
+ <li>Add an empty <code><supports-screens></code> element as a child of
+<code><manifest></code>. If you need to enable size or density attributes
+later, this is where you will add them.</li>
+ <li>Change your application's build properties, such that it compiles against
+the Android 1.6 (API Level 4) library, rather than against the Android 1.5 (or
+earlier) library. You will not be able to compile your application against the
+older platform because of the new manifest attribute. </li>
+ <li>Set up AVDs for testing your application on Android 1.6 and higher
+releases. Create AVDs that use the screen sizes and densities that you want to
+support. When you create the AVDs, make sure to select the Android 1.6 or higher
+platform as the system image to run. For more information, see <a
+href="#testing">How to Test Your Application on Multiple Screens</a>,
+below.</li>
+ <li>Set up AVDs for testing your application on Android 1.5 (or earlier
+platform). You need AVDs running the older platforms you are targeting, so that
+you can test for compatibility and ensure that there are no functional
+regressions. </li>
+ <li>Compile your application against the Android 1.6 library and run it on the
+AVDs you created. Observe the way your application looks and runs, and test all
+of the user interactions. </li>
+ <li>Debug any display or functional issues. For issues that you resolve in
+your application code, <span style="color:red">make certain not to use any APIs
+introduced in API Level 4 or later</span>. If you are in doubt, refer to SDK
+reference documentation and look for the API Level specifier for the API you
+want to use. Using an API introduced in API Level 4 or later will mean that your
+application will no longer be compatible with devices running Android 1.5 or
+earlier.</li>
+ <li>For resource-related issues, you can try resolving them by:
+ <ul>
+ <li>Adding a <code>anyDensity="false"</code> attribute to
+<code><supports-screens></code>, to enable density-compatibility
+scaling.</li>
+ <li>Creating any size- or density-specific resources you need and placing
+them in directories tagged with the <a href="#qualifiers">correct
+qualifiers</a>. Qualifiers must be arranged in a proscribed order. See
+<a href="{@docRoot}guide/topics/resources/resources-i18n.html#AlternateResources">
+Alternate Resources</a> for more information. </li>
+ <li>Note that if you add size- or density-specific resource directories
+tagged with any of the resource qualifiers listed in this document, you should
+make sure to also tag those directories with the <code>v<api-level></code>
+qualifier (for example, <code>-v4</code>). This ensures that those resources
+will be ignored when the application is run on Android 1.5 or lower platform
+versions.</p></li>
+ </ul>
+ </li>
+ <li>If your application does not offer support (such as custom layouts) for
+large screens and you want the platform to display your application in
+screen-compatibility mode on larger screens, add a
+<code>largeScreens="false"</code> attribute to the
+<code><supports-screens></code> element in the manifest. See
+<a href="#compatibility-examples">Screen-Compatibility Examples</a> for
+illustrations of how the platform displays your application in this case.</li>
+ <li>If your application does not offer support (such as custom layouts) for
+small screens (such as on a QVGA low-density screen) and you do not want Android
+Market to offer the application to users of small-screen devices, you
+<em>must</em> add a <code>smallScreens="false"</code> attribute to the
+<code><supports-screens></code> element. </li>
+ <li>Continue testing and debugging until your application performs as expected
+on all of the platforms and screen sizes your application will support.</li>
+ <li>Export, zipalign, and sign your application using the same private key you
+used when publishing the previous version, then publish the application to users
+as an update. </li>
+</ol>
+
+<p>In particular, remember to test your application on an AVD that emulates a
+small-screen device. Devices that offer screens with QVGA resolution at low
+density are available now. Users of those devices may want to download your
+application, so you should understand how your application will look and
+function on a small-screen device. In many cases, the reduced screen area and
+density mean that you may need to make tradeoffs in design, content, and
+function on those devices. </p>
+
+<h2 id="testing">How to Test Your Application on Multiple Screens</h2>
+
+<p>Before publishing an application that supports multiple screens, you should
+thoroughly test it in all of the targeted screen sizes and densities. You can
+test how it displays with the platform's compatibility features enabled or with
+screen-specific UI resources included in your application. The Android SDK
+includes all the tools you need to test your application on any supported
+screen.</p>
+
+<!-- You can test in any minsdk, and you can test with compatabiltiy code or
+not. Once you've tested your application and found that it displays properly on
+various screen sizes, you should make sure to add the corresponding size
+attribute(s) to your application's manifest. -->
+
+<p>As a test environment for your applications, set up a series of AVDs that
+emulate the screen sizes and densities you want to support. The Android SDK
+includes four emulator skins to get you started. You can use the Android AVD
+Manager or the <code>android</code> tool to create AVDs that use the various
+emulator skins and you can also set up custom AVDs to test densities other than
+the defaults. For general information about working with AVDs, see
+<a href="{@docRoot}guide/developing/tools/avd.html">Android Virtual
+Devices</a>.</p>
+
+<p>The Android 1.6 and higher platforms in the SDK include these emulator skins,
+which represent the primary screen configurations that your should test:</p>
+
+<ul>
+ <li>
+ QVGA (240x320, low density, small screen)
+ </li>
+ <li>
+ WQVGA400 (240x400, low density, normal screen)
+ </li>
+ <li>
+ WQVGA432 (240x432, low density, normal screen)
+ </li>
+ <li>
+ HVGA (320x480, medium density, normal screen)
+ </li>
+ <li>
+ WVGA800 (480x800, high density, normal screen)
+ </li>
+ <li>
+ WVGA854 (480x854 high density, normal screen)
+ </li>
+</ul>
+
+<p>If you are using the <code>android</code> tool command line to create your
+AVDs, here's an example of how to specify the skin you want to use:</p>
+
+<pre>android create avd ... --skin WVGA800</pre>
+
+<p>We also recommend that you test your application in an emulator that is set
+up to run at a physical size that closely matches an actual device. This makes
+it a lot easier to compare the results at various resolutions and densities. To
+do so you will need to know the approximate density, in dpi, of your computer
+monitor (a 30" Dell monitor has for instance a density of about 96 dpi.). Use
+your monitor's dpi as the value of the <code>-scale</code> option, when
+launching the emulator, for example:</p>
+
+<pre>emulator -avd <name> -scale 96dpi</pre>
+
+<p>If you are working in Eclipse with ADT, you can specify the <code>-scale
+96dpi</code> option in the Target tab of run and debug configurations, under
+"Additional Emulator Command Line Options" field. </p>
+
+<p>Note that starting the emulator with the <code>-scale</code> option will
+scale the entire emulator display, based on both the dpi of the skin and of your
+monitor. Using the default densities, the emulator skins included in the Android
+1.6 SDK will emulate the following screen sizes:</p>
+
+<ul>
+ <li>
+ QVGA, low density: 3.3"
+ </li>
+ <li>
+ HVGA, medium density: 3.6"
+ </li>
+ <li>
+ WVGA800, high density: 3.9"
+ </li>
+ <li>
+ WVGA854, high density: 4.1"
+ </li>
+</ul>
+
+<p>You should also make sure to test your application on different physical
+screen sizes within a single size-density configuration. For example, according
+to <a href="#range">Table 1</a>, the minimum supported diagonal of QVGA is 2.8".
+To display this is on a 30" monitor you will need to adjust the value passed to
+<code>-scale</code> to 96*2.8/3.3 = 81dpi. You can also pass a float value to
+<code>-scale</code> to specify your own scaling factor:</p>
+
+<pre>emulator -avd <name> -scale 0.6</pre>
+
+<p>If you would like to test your application on a screen not supported by the
+built-in skins, you can either adjust an existing skin, or create a custom
+resolution.</p>
+
+<p>For example, to test on a large WVGA800 screen with medium density:</p>
+
+<ol>
+ <li>Create an AVD based on the WVGA800 skin (using the <code>android</code>
+tool's command line.)<br></li>
+ <li>Answer "yes" when asked about using custom hardware</li>
+ <li>enter "160" when asked about the value for <em>hw.lcd.density</em>
+(120-low, 160-medium, 240-high).</li>
+</ol>
+
+<p>When running this AVD, the emulator will emulate a 5.8" WVGA screen.</p>
+
+<p>As an alternative to adjusting the emulator skin configuration, you can use
+the emulator skin's default density and add the <code>-dpi-device</code> option
+to the emulator command line when starting the AVD. For example, </p>
+
+<pre>emulator -avd WVGA800 -scale 96dpi -dpi-device 160</pre>
+
+<p>If you would like to test your application with a resolution not supported by
+the provided skins, you can use the desired resolution in place of the skin
+name. For instance, for FWQVGA you would use:</p>
+
+<pre>android create avd ... --skin 240x432</pre>
+
+<p>Next, you would need to set the proper density for the screen. When asked by
+the tool whether you want to create a custom hardware profile for the new AVD,
+enter "yes". Continue through the various profile settings until the tools asks
+you to specify "Abstracted LCD density". Consult <a href="#range">Table 1</a>,
+earlier in this document, and enter the appropriate value. For the FWQVGA
+screen, the density should be "160", or medium.</p>
+
+<div id="f9.5" style="text-align:left;margin:0;padding:0;">
+ <img src="{@docRoot}images/screens_support/avds-config.png" style="padding:0;margin:0;">
+ <p class="caption" style="margin:0 0 1.5em 1em;padding:0 0 0 1em;"><strong>Figure 3.</strong>
+ A typical set of AVDs for testing screens support.</p>
+</div>
+
+
+<h2 id="compatibility-examples">Screen-Compatibility Examples</h2>
+
+<p>This section provides examples of how the Android platform displays an
+application written for the baseline screen configuration — HVGA (320x480)
+resolution on a 3.2" screen — with all of the platform's size- and
+density-compatibility features enabled. That is, the examples show how
+the platform displays an application that doesn't provide built-in support
+for the screen on which it is being rendered, but which instead relies completely
+on the platform.</p>
+
+<p>The platform's screen-compatibility features are designed to provide such
+an application with a virtual baseline screen environment against which to run,
+while at the same time ensuring for the user a physical display that is
+approximately the same as the baseline screen size and density. </p>
+
+<p>Legacy applications that have not been modified to support multiple
+screens would be typical examples of such applications. In most cases,
+you would want to add multiple-screens support to a legacy application and
+publish an updated version, as described in <a href="#strategies">Strategies
+for Legacy Applications</a>. However, if you did not do so, the
+platform still performs best-effort rendering of your application, as
+illustrated below.</p>
+
+<p> Internally, these are the compatibility features that the platform
+provides, based on the current device screen:</p>
+
+ <ul>
+ <li>
+ If the device's screen density is <em>not medium</em>, the application's
+layout and drawing of its content is as if the screen <em>is</em> medium density, but the
+framework scales the layout and images (if the image for the target density is
+not available) to fit the target density. It scales 1.5 times if the target
+density is high density (160->240 virtual dpi), or 0.75 times if the target
+density is low density (160 -> 120 virtual dpi).
+ </li>
+ <li>
+ If the device's screen size is <em>small</em>, there are few options
+options for making Android 1.5 applications work well on such a screen, so
+Android Market will filter applications that are not known to support these
+screens from the device.
+ </li>
+ <li>
+ If the device's screen size is <em>large</em>, it limits the application's
+screen to the normal size and draws a black background around the application.
+For example, if an application supports high density, but does not support large
+screens, it only uses a 480x720 area of the screen and the rest will be filled
+with a black background (see example below).
+ </li>
+ </ul>
+
+<table style="width:10%;margin-left:.5em;">
+ <tr>
+ <td>
+ HVGA, normal size, normal density<br>
+ [ emulator -skin HVGA ]<br>
+ <img height=149 src="{@docRoot}images/screens_support/afdvfckr9j_15dcsvrscg_b.png" width=225>
+ </td>
+ <td>
+ WVGA, normal size, high density<br>
+ [emulator -skin WVGA854 -dpi-device 240]<br>
+ <img height=143 src="{@docRoot}images/screens_support/afdvfckr9j_18c6mhm3cm_b.png" width=254><br>
+ <p>The application occupies full screen as its considered to be normal size. (close to 480x720)</p>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ VGA, large size, medium density<br>
+ [ emulator -skin 640x480 ]<br>
+ <img height=243 src="{@docRoot}images/screens_support/afdvfckr9j_14fj6dhsc3_b.png" width=324>
+ <p>The application occupies 320x480 of VGA.</p>
+ </td>
+ <td>
+ SVGA, large size, high density<br>
+ [ emulator -skin 800x600 -dpi-device 240]<br>
+ <img height=223 src="{@docRoot}images/screens_support/afdvfckr9j_19c743p6cr_b.png" width=294>
+ <p>The application occupies 480x720 (=1.5 x [320x480]) of 800x600.</p>
+ </td>
+ </tr>
+</table>
+
+
+<h3>Screen-compatibility limitations on small, low-density screens</h3>
+
+<p>Because these device has smaller state/resolution, there are known
+limitations when application runs in compatibility mode.</p>
+
+<h4>QVGA</h4>
+
+<p>Because QVGA (240x320) screens have less screen area available and lower
+density than normal, which is 240x360 in low density, some applications cannot
+render all their content properly on those screens. As a result, on a QVGA
+device, Android Market will filter out all applications that do not declare they
+support small screens.</p>
+
+<p>Examples:</p>
+
+<table style="width:10%;margin-left:.5em;">
+ <tr>
+ <td>The part of z value graph is chopped.</td>
+ <td>The lap time area is chopped.<br></td>
+ </tr>
+ <tr>
+ <td><img height=207 src="{@docRoot}images/screens_support/afdvfckr9j_16g95wjqg3_b.png" width="155"></td>
+ <td><img height=186 src="{@docRoot}images/screens_support/afdvfckr9j_17p2w4txgc_b.png" width="139"></td>
+ </tr>
+</table>
+
+
+<h4>Images with 1 pixel height/width.</h4>
+
+<p>If an image has 1 pixel height or width, it may not be shown on the screen
+due to rounding issue. This is inevitable as it just does not have enough
+pixels.</p>
+
+<p>For example, in the screen below, the divider in the menu is invisible
+because the width of the image is trancated to 0. (This particular problem is
+solvable because menu is handled inside framework, but there is no generic
+solution as it just does not have enough pixels.)</p>
+
+<img height=222 src="{@docRoot}images/screens_support/afdvfckr9j_20fvptbbdd_b.png" width=166>
+
+
+
diff --git a/docs/html/guide/topics/manifest/provider-element.jd b/docs/html/guide/topics/manifest/provider-element.jd
index 3942f95..98892f1 100644
--- a/docs/html/guide/topics/manifest/provider-element.jd
+++ b/docs/html/guide/topics/manifest/provider-element.jd
@@ -111,7 +111,7 @@
<code><a href="{@docRoot}guide/topics/manifest/provider-element.html#wprmsn">writePermission</a></code>, and
<code><a href="{@docRoot}guide/topics/manifest/provider-element.html#prmsn">permission</a></code> attributes
—
-"{@code true}" if permission can be granted, and "{@ code false}" if not.
+"{@code true}" if permission can be granted, and "{@code false}" if not.
If "{@code true}", permission can be granted to any of the content
provider's data. If "{@code false}", permission can be granted only
to the data subsets listed in
diff --git a/docs/html/guide/topics/manifest/supports-screens-element.jd b/docs/html/guide/topics/manifest/supports-screens-element.jd
index 00797ed..3fb0172 100644
--- a/docs/html/guide/topics/manifest/supports-screens-element.jd
+++ b/docs/html/guide/topics/manifest/supports-screens-element.jd
@@ -30,40 +30,8 @@
or scale them up by a factor of 1.5 (high dpi screens).
The screen density is expressed as dots-per-inch (dpi).</p>
-<p>Currently supported densities:</p>
-<ul>
- <li>Low density: 120 dpi</li>
- <li>Medium density: 160 dpi</li>
- <li>High density: 240 dpi</li>
-</ul>
-
-<p>Table of display types:</p>
-
-<table>
-<tr>
- <th></th><th>Low Density</th><th>Medium Density</th><th>High Density</th>
-</tr>
-<tr>
- <th>Small Screen</th>
- <td>QVGA</td>
- <td>n/a</td>
- <td>VGA</td>
-</tr>
-<tr>
- <th>Normal Screen</th>
- <td>WQVGA</td>
- <td>HVGA</td>
- <td>WVGA, FWVGA</td>
-</tr>
-<tr>
- <th>Large Screen</th>
- <td>n/a</td>
- <td>VGA, WVGA, FWVGA</td>
- <td>n/a</td>
-</tr>
-</table>
-
-</dd>
+<p>For more information, see
+<a href="{@docRoot}guide/practices/screens_suppport.html">Multiple Screens Support</a>.</p>
<dt>attributes:</dt>
@@ -116,6 +84,7 @@
<dt>see also:</dt>
<dd>
<ul>
+ <li><a href="{@docRoot}guide/practices/screens_suppport.html">Multiple Screens Support</a></li>
<li>{@link android.util.DisplayMetrics}</li>
</ul>
</dd>
diff --git a/docs/html/guide/topics/ui/ui-events.jd b/docs/html/guide/topics/ui/ui-events.jd
index f4d114a..5628d46 100644
--- a/docs/html/guide/topics/ui/ui-events.jd
+++ b/docs/html/guide/topics/ui/ui-events.jd
@@ -28,8 +28,8 @@
methods that look useful for UI events. These methods are called by the Android framework when the
respective action occurs on that object. For instance, when a View (such as a Button) is touched,
the <code>onTouchEvent()</code> method is called on that object. However, in order to intercept this, you must extend
-the class and override the method. Obviously, extending every View object
-you want to use (just to handle an event) would be obsurd. This is why the View class also contains
+the class and override the method. However, extending every View object
+in order to handle such an event would not be practical. This is why the View class also contains
a collection of nested interfaces with callbacks that you can much more easily define. These interfaces,
called <a href="#EventListeners">event listeners</a>, are your ticket to capturing the user interaction with your UI.</p>
@@ -102,7 +102,7 @@
}
</pre>
-<p>You may also find it more conventient to implement OnClickListener as a part of your Activity.
+<p>You may also find it more convenient to implement OnClickListener as a part of your Activity.
This will avoid the extra class load and object allocation. For example:</p>
<pre>
public class ExampleActivity extends Activity implements OnClickListener {
@@ -168,7 +168,7 @@
<li><code>{@link android.view.View#onTouchEvent}</code> - Called when a touch screen motion event occurs.</li>
<li><code>{@link android.view.View#onFocusChanged}</code> - Called when the view gains or loses focus.</li>
</ul>
-<p>There are some other methods that you should be awere of, which are not part of the View class,
+<p>There are some other methods that you should be aware of, which are not part of the View class,
but can directly impact the way you're able to handle events. So, when managing more complex events inside
a layout, consider these other methods:</p>
<ul>
diff --git a/docs/html/guide/tutorials/hello-world.jd b/docs/html/guide/tutorials/hello-world.jd
index 79b723d..58d1a16 100644
--- a/docs/html/guide/tutorials/hello-world.jd
+++ b/docs/html/guide/tutorials/hello-world.jd
@@ -29,7 +29,7 @@
<p>Before you start, you should already have the very latest SDK installed, and if you're using
Eclipse, you should have installed the ADT plugin as well. If you have not installed these, see
-<a href="{@docRoot}sdk/{@sdkCurrent}/installing.html">Installing the Android SDK</a> and return
+<a href="{@docRoot}sdk/installing.html">Installing the Android SDK</a> and return
here when you've completed the installation.</p>
<h2 id="avd">Create an AVD</h2>
diff --git a/docs/html/guide/tutorials/localization/index.jd b/docs/html/guide/tutorials/localization/index.jd
index d31eb10..eeade34 100755
--- a/docs/html/guide/tutorials/localization/index.jd
+++ b/docs/html/guide/tutorials/localization/index.jd
@@ -539,9 +539,8 @@
<p><img src="{@docRoot}images/hello_l10n/using_custom_locale.png" alt="using custom locale"
width="512" height="299" style="margin-left:15px"></p>
-<p>For a list of supported locales, see the
-<a href="{@docRoot}sdk/android-{@sdkCurrentVersion}.html">Android
-Version Notes</a>.</p>
+<p>For a list of supported locales in a specific Android platform, see the
+associated notes in the "SDK" tab, under "Downloadable SDK Components."</p>
<p>Run the application for each of the expected locales, plus one unexpected
locale. Here are some of the results you should see:</p>
diff --git a/docs/html/images/screens_support/afdvfckr9j_14fj6dhsc3_b.png b/docs/html/images/screens_support/afdvfckr9j_14fj6dhsc3_b.png
new file mode 100644
index 0000000..ff4fbbf
--- /dev/null
+++ b/docs/html/images/screens_support/afdvfckr9j_14fj6dhsc3_b.png
Binary files differ
diff --git a/docs/html/images/screens_support/afdvfckr9j_15dcsvrscg_b.png b/docs/html/images/screens_support/afdvfckr9j_15dcsvrscg_b.png
new file mode 100644
index 0000000..7a987dd
--- /dev/null
+++ b/docs/html/images/screens_support/afdvfckr9j_15dcsvrscg_b.png
Binary files differ
diff --git a/docs/html/images/screens_support/afdvfckr9j_16g95wjqg3_b.png b/docs/html/images/screens_support/afdvfckr9j_16g95wjqg3_b.png
new file mode 100644
index 0000000..20835b6
--- /dev/null
+++ b/docs/html/images/screens_support/afdvfckr9j_16g95wjqg3_b.png
Binary files differ
diff --git a/docs/html/images/screens_support/afdvfckr9j_17p2w4txgc_b.png b/docs/html/images/screens_support/afdvfckr9j_17p2w4txgc_b.png
new file mode 100644
index 0000000..8895d49
--- /dev/null
+++ b/docs/html/images/screens_support/afdvfckr9j_17p2w4txgc_b.png
Binary files differ
diff --git a/docs/html/images/screens_support/afdvfckr9j_18c6mhm3cm_b.png b/docs/html/images/screens_support/afdvfckr9j_18c6mhm3cm_b.png
new file mode 100644
index 0000000..ef6ec66
--- /dev/null
+++ b/docs/html/images/screens_support/afdvfckr9j_18c6mhm3cm_b.png
Binary files differ
diff --git a/docs/html/images/screens_support/afdvfckr9j_19c743p6cr_b.png b/docs/html/images/screens_support/afdvfckr9j_19c743p6cr_b.png
new file mode 100644
index 0000000..34be212
--- /dev/null
+++ b/docs/html/images/screens_support/afdvfckr9j_19c743p6cr_b.png
Binary files differ
diff --git a/docs/html/images/screens_support/afdvfckr9j_20fvptbbdd_b.png b/docs/html/images/screens_support/afdvfckr9j_20fvptbbdd_b.png
new file mode 100644
index 0000000..2415b52
--- /dev/null
+++ b/docs/html/images/screens_support/afdvfckr9j_20fvptbbdd_b.png
Binary files differ
diff --git a/docs/html/images/screens_support/avds-config.png b/docs/html/images/screens_support/avds-config.png
new file mode 100644
index 0000000..7db8c73
--- /dev/null
+++ b/docs/html/images/screens_support/avds-config.png
Binary files differ
diff --git a/docs/html/images/screens_support/dip.png b/docs/html/images/screens_support/dip.png
new file mode 100644
index 0000000..3cbad57
--- /dev/null
+++ b/docs/html/images/screens_support/dip.png
Binary files differ
diff --git a/docs/html/images/screens_support/scale-test.png b/docs/html/images/screens_support/scale-test.png
new file mode 100644
index 0000000..f4fc662
--- /dev/null
+++ b/docs/html/images/screens_support/scale-test.png
Binary files differ
diff --git a/docs/html/intl/ja/guide/developing/eclipse-adt.jd b/docs/html/intl/ja/guide/developing/eclipse-adt.jd
index 26cae54..e7accd8 100644
--- a/docs/html/intl/ja/guide/developing/eclipse-adt.jd
+++ b/docs/html/intl/ja/guide/developing/eclipse-adt.jd
@@ -29,8 +29,8 @@
<li>プロジェクトを、ユーザーに配布可能な署名済みの APK 形式でエクスポートすることもできます。</li>
</ul>
-<p>ADT を組み込んだ Eclipse 総合開発環境で Android アプリケーションの開発を始めるには、最初に Eclipse 総合開発環境をダウンロードしてから、ADT プラグインをダウンロードしてインストールする必要があります。そのためには、<a href="{@docRoot}sdk/{@sdkCurrent}/installing.html#installingplugin">Eclipse 用 ADT プラグインのインストール</a>に記載されている手順どおりに操作します。</p>
-<p>バージョン 0.9 より前の ADT を使用してアプリケーションを既に開発中の場合は、必ず最新バージョンにアップグレードしてから続行してください。<a href="{@docRoot}sdk/{@sdkCurrent}/upgrading.html#UpdateAdt">Eclipse ADT プラグインをアップデート</a>するためのガイドをご覧ください。</p>
+<p>ADT を組み込んだ Eclipse 総合開発環境で Android アプリケーションの開発を始めるには、最初に Eclipse 総合開発環境をダウンロードしてから、ADT プラグインをダウンロードしてインストールする必要があります。そのためには、<a href="{@docRoot}sdk/eclipse-adt.html#installing">Eclipse 用 ADT プラグインのインストール</a>に記載されている手順どおりに操作します。</p>
+<p>バージョン 0.9 より前の ADT を使用してアプリケーションを既に開発中の場合は、必ず最新バージョンにアップグレードしてから続行してください。<a href="{@docRoot}sdk/eclipse-adt.html#updating">Eclipse ADT プラグインをアップデート</a>するためのガイドをご覧ください。</p>
<p class="note"><strong>注:</strong> このガイドでは、ADT プラグインの最新バージョンを使用していることを前提としています。説明の大半は、以前のバージョンにも当てはまりますが、以前のバージョンを使用している場合は、このドキュメントのオンライン版ではなく、SDK パッケージに付属された資料内の同ドキュメントをご覧ください。</p>
diff --git a/docs/html/intl/ja/guide/tutorials/hello-world.jd b/docs/html/intl/ja/guide/tutorials/hello-world.jd
index 31857ce..c12965c 100644
--- a/docs/html/intl/ja/guide/tutorials/hello-world.jd
+++ b/docs/html/intl/ja/guide/tutorials/hello-world.jd
@@ -20,7 +20,7 @@
<p>Eclipse を使用していない場合でも問題ありません。<a href="{@docRoot}guide/developing/other-ide.html">Developing in Other IDEs</a>に慣れてから、このチュートリアルに戻り、Eclipse に関する部分以外を参考にしてください。</p>
-<p>開始する前に、最新の SDK がインストールされている必要があります。また、Eclipse を使用する場合には、ADT プラグインもインストールされている必要があります。これらのプログラムがインストールされていない場合は、「<a href="{@docRoot}sdk/{@sdkCurrent}/installing.html">Installing the Android SDK</a>」を参考にインストールを実行して、完了後にこのチュートリアルに戻ってください。</p>
+<p>開始する前に、最新の SDK がインストールされている必要があります。また、Eclipse を使用する場合には、ADT プラグインもインストールされている必要があります。これらのプログラムがインストールされていない場合は、「<a href="{@docRoot}sdk/installing.html">Installing the Android SDK</a>」を参考にインストールを実行して、完了後にこのチュートリアルに戻ってください。</p>
<h2 id="avd">AVD の作成</h2>
diff --git a/docs/html/intl/ja/sdk/1.5_r2/installing.jd b/docs/html/intl/ja/sdk/1.5_r2/installing.jd
index bcb1ffb..a587b1a 100644
--- a/docs/html/intl/ja/sdk/1.5_r2/installing.jd
+++ b/docs/html/intl/ja/sdk/1.5_r2/installing.jd
@@ -2,7 +2,7 @@
@jd:body
-<p>このページでは、Android SDK をインストールして、開発環境を設定する方法について説明します。SDK をまだダウンロードしていない場合は、[<a href="{@docRoot}sdk/{@sdkCurrent}/index.html">ダウンロード</a>] ページからダウンロードしてください。SDK をダウンロードした後に、このページの手順を行ってください。</p>
+<p>このページでは、Android SDK をインストールして、開発環境を設定する方法について説明します。SDK をまだダウンロードしていない場合は、[<a href="{@docRoot}sdk/index.html">ダウンロード</a>] ページからダウンロードしてください。SDK をダウンロードした後に、このページの手順を行ってください。</p>
<p>インストール中に問題が発生した場合は、このページの下部にある<a href="#installnotes">インストールに関する注意事項</a>を参照してください。</p>
diff --git a/docs/html/intl/ja/sdk/1.5_r3/installing.jd b/docs/html/intl/ja/sdk/1.5_r3/installing.jd
index bcb1ffb..a587b1a 100644
--- a/docs/html/intl/ja/sdk/1.5_r3/installing.jd
+++ b/docs/html/intl/ja/sdk/1.5_r3/installing.jd
@@ -2,7 +2,7 @@
@jd:body
-<p>このページでは、Android SDK をインストールして、開発環境を設定する方法について説明します。SDK をまだダウンロードしていない場合は、[<a href="{@docRoot}sdk/{@sdkCurrent}/index.html">ダウンロード</a>] ページからダウンロードしてください。SDK をダウンロードした後に、このページの手順を行ってください。</p>
+<p>このページでは、Android SDK をインストールして、開発環境を設定する方法について説明します。SDK をまだダウンロードしていない場合は、[<a href="{@docRoot}sdk/index.html">ダウンロード</a>] ページからダウンロードしてください。SDK をダウンロードした後に、このページの手順を行ってください。</p>
<p>インストール中に問題が発生した場合は、このページの下部にある<a href="#installnotes">インストールに関する注意事項</a>を参照してください。</p>
diff --git a/docs/html/offline.jd b/docs/html/offline.jd
index 78e2679..fe70d50 100644
--- a/docs/html/offline.jd
+++ b/docs/html/offline.jd
@@ -10,17 +10,17 @@
<h3>If you've downloaded the Android SDK for the first time...</h3>
-<p>Complete the online guide to
-<a href="http://developer.android.com/sdk/{@sdkCurrent}/installing.html">Installing
+<p>Follow the online guide to
+<a href="{@docRoot}sdk/installing.html">Installing
the Android SDK</a>, which will help you setup your development environment
(including the Android Development Tools plugin for Eclipse)
so you can start developing Android apps.</p>
<p>Once your environment is setup, look at the
-<a href="http://developer.android.com/sdk/{@sdkCurrent}/installing.html#NextSteps">Next
-Steps</a> for some pointers that will teach you about Android and get you started.</p>
+<a href="{@docRoot}sdk/installing.html#NextSteps">Next
+Steps</a> for some suggestions on how to begin learning about Android.</p>
-<h3>If you've updated an existing SDK using the <em>SDK and AVD Manager</em>...</h3>
+<h3>If you've just installed new SDK components using the <em>SDK and AVD Manager</em>...</h3>
<p>There's no additional setup.</p>
@@ -37,10 +37,11 @@
Android developer documentation. The offline documentation offers almost all the same
content and features as the online documentation. Because some features
such as search and videos are network-based, not everything will work if you
-are not connected to the Internet.<br/><br/>
-For the most current documentation and fully-functional experience, please visit<br/>
-<strong><a href="http://developer.android.com">
-http://developer.android.com</a></strong>.
+are not connected to the Internet.</p>
+
+<p>For the most current documentation and a fully-functional experience, please visit:</p>
+<p style="margin-left:2em;">
+<a href="http://developer.android.com">http://developer.android.com</a></strong>.
</p>
diff --git a/docs/html/sdk/1.5_r2/installing.jd b/docs/html/sdk/1.5_r2/installing.jd
index 1530dc5..1e4e0f2 100644
--- a/docs/html/sdk/1.5_r2/installing.jd
+++ b/docs/html/sdk/1.5_r2/installing.jd
@@ -323,7 +323,7 @@
<ul>
<li>If JDK is already installed on your development computer, please
take a moment to make sure that it meets the version requirements listed
- in the <a href="{@docRoot}sdk/{@sdkCurrent}/requirements.html">System Requirements</a>.
+ in the <a href="{@docRoot}sdk/requirements.html">System Requirements</a>.
In particular, note that some Linux distributions may include JDK 1.4 or Gnu
Compiler for Java, both of which are not supported for Android development.</li>
</ul>
diff --git a/docs/html/sdk/1.5_r3/installing.jd b/docs/html/sdk/1.5_r3/installing.jd
index 8c3e8ee..ac475d1 100644
--- a/docs/html/sdk/1.5_r3/installing.jd
+++ b/docs/html/sdk/1.5_r3/installing.jd
@@ -323,7 +323,7 @@
<ul>
<li>If JDK is already installed on your development computer, please
take a moment to make sure that it meets the version requirements listed
- in the <a href="{@docRoot}sdk/{@sdkCurrent}/requirements.html">System Requirements</a>.
+ in the <a href="{@docRoot}sdk/requirements.html">System Requirements</a>.
In particular, note that some Linux distributions may include JDK 1.4 or Gnu
Compiler for Java, both of which are not supported for Android development.</li>
</ul>
diff --git a/docs/html/sdk/2.0_r1/installing.jd b/docs/html/sdk/2.0_r1/installing.jd
deleted file mode 100644
index fd269dc..0000000
--- a/docs/html/sdk/2.0_r1/installing.jd
+++ /dev/null
@@ -1,389 +0,0 @@
-page.title=Installing the Android 2.0 SDK
-sdk.preview=0
-
-@jd:body
-
-<div id="qv-wrapper">
-<div id="qv">
-
- <h2>In this document</h2>
- <ol>
- <li><a href="#Preparing">Prepare for Installation</a></li>
- <li><a href="#Installing">Install the SDK</a></li>
- <li><a href="#InstallingADT">Install the ADT Plugin for Eclipse</a></li>
- <li><a href="#sdkContents">SDK Contents</a></li>
- <li><a href="#NextSteps">Next Steps</a></li>
- <li><a href="#InstallationNotes">Installation Notes</a></li>
- <li><a href="#Troubleshooting">Troubleshooting ADT Installation</a></li>
- </ol>
-
-</div>
-</div>
-
-<p>This page describes how to install the Android SDK and set up your
-development environment for the first time.</p>
-
-<p>If you encounter any problems during installation, see the
-<a href="#InstallationNotes">Installation Notes</a> at the bottom of
-this page.</p>
-
-<h4>Updating?</h4>
-<p>If you have already installed an earlier version
-of the Android SDK, please instead read <a href="{@docRoot}sdk/updating-sdk.html">Updating Your SDK</a>.
-</p>
-
-
-<h2 id="Preparing">Prepare for Installation</h2>
-
-<p>Before you begin, take a moment to confirm that your development machine
-meets the <a href="requirements.html">System Requirements</a>.</p>
-
-<p>If you will be developing in Eclipse with the Android Development
-Tools (ADT) Plugin — the recommended path if you are new to
-Android — make sure that you have a suitable version of Eclipse
-installed on your computer (3.4 or newer is recommended). If you need
-to install Eclipse, you can download it from this location: </p>
-
-<p style="margin-left:2em;"><a href=
-"http://www.eclipse.org/downloads/">http://www.eclipse.org/downloads/</a></p>
-
-<p>A Java or RCP version of Eclipse is recommended. </p>
-
-<h2 id="Installing">Install the SDK</h2>
-
-<p>After downloading the Android SDK, unpack the Android SDK .zip archive
-to a suitable location on your machine. By default, the SDK files are unpacked
-into a directory named <code>android_sdk_<em><platform</em>>_<em><release></em></code>. </p>
-
-<p>Make a note of the name and location of the unpacked SDK directory on your system — you
-will need to refer to the SDK directory later, when setting up the Android plugin or when
-using the SDK tools.</p>
-
-<p>Optionally, you may want to add the location of the SDK's primary <code>tools</code> directory
-to your system <code>PATH</code>. The primary <code>tools/</code> directory is located at the root of the
-SDK folder. Adding <code>tools</code> to your path lets you run Android Debug Bridge (adb) and
-the other command line <a href="{@docRoot}guide/developing/tools/index.html">tools</a> without
-needing to supply the full path to the tools directory. </p>
-<ul>
- <li>On Linux, edit your <code>~/.bash_profile</code> or <code>~/.bashrc</code> file. Look
- for a line that sets the PATH environment variable and add the
- full path to the <code>tools/</code> directory to it. If you don't
- see a line setting the path, you can add one:</li>
-
- <ul><code>export PATH=${PATH}:<em><your_sdk_dir></em>/tools</code></ul>
-
- <li>On a Mac OS X, look in your home directory for <code>.bash_profile</code> and
- proceed as for Linux. You can create the <code>.bash_profile</code> if
- you haven't already set one up on your machine. </li>
-
- <li>On Windows, right-click on My Computer, and select Properties.
- Under the Advanced tab, hit the Environment Variables button, and in the
- dialog that comes up, double-click on Path (under System Variables). Add the full path to the
- <code>tools/</code> directory to the path. </li>
- </ul>
-
-<p>Note that, if you update your SDK in the future, you
-should remember to update your <code>PATH</code> settings to point to the new location, if different.</p>
-
-<p>If you will be using the Eclipse IDE as your development environment,
-the next section describes how to install the Android Development Tools (ADT) plugin and set up Eclipse.
-If you choose not to use Eclipse, you can
-develop Android applications in an IDE of your choice and then compile, debug and deploy using
-the tools included in the SDK (skip to <a href="#NextSteps">Next Steps</a>).</p>
-
-
-<h2 id="InstallingADT">Install the ADT Plugin for Eclipse</h2>
-
-<p>Android offers a custom plugin for the Eclipse IDE, called Android
-Development Tools (ADT), that is designed to give you a powerful,
-integrated environment in which to build Android applications. It
-extends the capabilites of Eclipse to let you quickly set up new Android
-projects, create an application UI, add components based on the Android
-Framework API, debug your applications using the Android SDK tools, and even export
-signed (or unsigned) APKs in order to distribute your application.</p>
-
-<p>In general, using Eclipse with ADT is a highly recommended approach to
-Android development and is the fastest way to get started. (If you prefer to
-work in an IDE other than Eclipse, you do not need to install Eclipse or ADT,
-instead, you can directly use the SDK tools to build and debug your
-application—skip to <a href="#NextSteps">Next Steps</a>.)</p>
-
-<p>Once you have the Eclipse IDE installed, as described in <a
-href="#Preparing">Preparing for Installation</a>, follow the steps below to
-download the ADT plugin and install it in your respective Eclipse environment.
-</p>
-
-<table style="font-size:100%">
-<tr><th>Eclipse 3.4 (Ganymede)</th><th>Eclipse 3.5 (Galileo)</th></tr>
-<tr>
-<td width="45%">
-<!-- 3.4 steps -->
-<ol>
- <li>Start Eclipse, then select <strong>Help</strong> > <strong>Software Updates...</strong>.
- In the dialog that appears, click the <strong>Available Software</strong> tab. </li>
- <li>Click <strong>Add Site...</strong> </li>
- <li>In the Add Site dialog that appears, enter this URL in the "Location" field:
- <pre style="margin-left:0">https://dl-ssl.google.com/android/eclipse/</pre>
- <p>Note: If you have trouble aqcuiring the plugin, try using "http" in the Location URL,
- instead of "https" (https is preferred for security reasons).</p>
- <p>Click <strong>OK</strong>.</p></li>
- <li>Back in the Available Software view, you should see the plugin listed by the URL,
- with "Developer Tools" nested within it. Select the checkbox next to
- Developer Tools and click <strong>Install...</strong></li>
- <li>On the subsequent Install window, "Android DDMS" and "Android Development Tools"
- should both be checked. Click <strong>Next</strong>. </li>
- <li>Read and accept the license agreement, then click <strong>Finish</strong>.</li>
- <li>Restart Eclipse. </li>
-</ol>
-
-</td>
-<td>
-<!-- 3.5 steps -->
-<ol>
- <li>Start Eclipse, then select <strong>Help</strong> > <strong>Install
- New Softare</strong>. </li>
- <li>In the Available Software dialog, click <strong>Add...</strong>.</li>
- <li>In the Add Site dialog that appears, enter a name for the remote site
- (e.g., "Android Plugin") in the "Name" field.
- <p>In the "Location" field, enter this URL:</p>
- <pre>https://dl-ssl.google.com/android/eclipse/</pre>
- <p>Note: If you have trouble aqcuiring the plugin, you can try
- using "http" in the URL, instead of "https" (https is preferred for
- security reasons).</p>
- <p>Click <strong>OK</strong>.</p>
- </li>
- <li>Back in the Available Software view, you should now see "Developer
- Tools" added to the list. Select the checkbox next to Developer Tools,
- which will automatically select the nested tools Android DDMS and Android
- Development Tools.
- Click <strong>Next</strong>. </li>
- <li>In the resulting Install Details dialog, the Android DDMS and Android
- Development Tools features are listed. Click <strong>Next</strong> to
- read and accept the license agreement and install any dependencies,
- then click <strong>Finish</strong>. </li>
- <li>Restart Eclipse. </li>
-
-</ol>
-</td>
-</tr>
-</table>
-
-<p>Now modify your Eclipse preferences to point to the Android SDK directory:</p>
-<ol>
- <li>Select <strong>Window</strong> > <strong>Preferences...</strong> to open the Preferences
- panel (Mac OS X: <strong>Eclipse</strong> > <strong>Preferences</strong>).</li>
- <li>Select <strong>Android</strong> from the left panel. </li>
- <li>For the <em>SDK Location</em> in the main panel, click <strong>Browse...</strong> and
- locate your downloaded SDK directory. </li>
- <li>Click <strong>Apply</strong>, then <strong>OK</strong>.</li>
-</ol>
-
-<p>Done! If you haven't encountered any problems, then you're ready to
-begin developing Android applications. See the
-<a href="#NextSteps">Next Steps</a> section for suggestions on how to start. </p>
-
-
-<h2 id="sdkContents">Contents of the SDK</h2>
-
-<p>Once you've downloaded and unpacked the SDK, open the SDK directory
-and take a look at what's inside.</p>
-
-<p>The table below describes the SDK directory contents. </p>
-
-<table>
-<tr>
-<th colspan="3">Name</th><th>Description</th>
-</tr>
-<tr>
-<td colspan="3"><code>add-ons/</code></td>
-<td>Contains add-ons to the Android SDK development
-environment, which let you develop against external libraries that are available on some
-devices. </td>
-</tr>
-<tr>
-<td colspan="3"><code>docs/</code></td>
-<td>A full set of documentation in HTML format, including the Developer's Guide,
-API Reference, and other information.</td>
-</tr>
-<tr>
-<td colspan="3"><code>platforms/</code></td>
-<td>Contains a set of Android platform versions that you can develop
-applications against, each in a separate directory. </td>
-</tr>
-<tr>
-<td style="width:2em;border-bottom-color:white;"></td>
-<td colspan="2"><code><platform>/</code></td>
-<td>Platform version directory, for example "Android 1.6". All platform version
-directories contain a similar set of files and subdirectory structure.</td>
-</tr>
-
-<tr>
-<td style="width:2em;border-bottom-color:white;"> </td>
-<td style="width:2em;border-bottom-color:white;"></td>
-<td><code>data/</code></td>
-<td>Storage area for default fonts and resource definitions.</td>
-</tr>
-<tr>
-<td style="width:2em;border-bottom-color:white;"></td>
-<td style="width:2em;border-bottom-color:white;"></td>
-<td><code>images/</code></td>
-<td>Storage area for default disk images, including the Android system image,
-the default userdata image, the default ramdisk image, and more. The images
-are used in emulator sessions.</td>
-</tr>
-<tr>
-<td style="width:2em;border-bottom-color:white;"></td>
-<td style="width:2em;border-bottom-color:white;"></td>
-<td><code>samples/</code></td>
-<td>Contains a wide variety of sample applications that you can load as projects
-into your development environment, compile, and run on the emulator.</td>
-</tr>
-<tr>
-<td style="width:2em;border-bottom-color:white;"></td>
-<td style="width:2em;border-bottom-color:white;"></td>
-<td><code>skins/</code></td>
-<td>A set of emulator skins available for the platform version. Each skin is
-designed for a specific screen resolution.</td>
-</tr>
-<tr>
-<td style="width:2em;border-bottom-color:white;"></td>
-<td style="width:2em;border-bottom-color:white;"></td>
-<td><code>templates/</code></td>
-<td>Storage area for file templates used by the SDK development tools.</td>
-</tr>
-<tr>
-<td style="width:2em;border-bottom-color:white;"></td>
-<td style="width:2em;border-bottom-color:white;"></td>
-<td><code>tools/</code></td>
-<td>Any development tools that are specific to the platform version.</td>
-</tr>
-<tr>
-<td style="width:2em;"></td>
-<td style="width:2em;"></td>
-<td><code>android.jar</code></td>
-<td>The Android library used when compiling applications against this platform
-version.</td>
-</tr>
-<tr>
-<td colspan="3"><code>tools/</code></td>
-<td>Contains the set of development and profiling tools available to you, such
-as the emulator, the <code>android</code> tool, adb, ddms, and more.</td>
-</tr>
-<tr>
-<td colspan="3"><code>RELEASE_NOTES.html</code></td>
-<td>A file that loads the local version of the SDK release notes, if
-available.</td>
-</tr>
-<tr>
-<td colspan="3"><code>documentation.html</code></td>
-<td>A file that loads the entry page for the local Android SDK
-documentation.</td>
-</tr>
-
-</table>
-
-<h2 id="InstallationNotes">Installation Notes</h2>
-
-<h3>Ubuntu Linux Notes</h3>
-
-<ul>
- <li>If you need help installing and configuring Java on your
- development machine, you might find these resources helpful:
- <ul>
- <li><a href="https://help.ubuntu.com/community/Java">https://help.ubuntu.com/community/Java </a></li>
- <li><a href="https://help.ubuntu.com/community/Java">https://help.ubuntu.com/community/JavaInstallation</a></li>
- </ul>
- </li>
- <li>Here are the steps to install Java and Eclipse, prior to installing
- the Android SDK and ADT Plugin.
- <ol>
- <li>If you are running a 64-bit distribution on your development
- machine, you need to install the <code>ia32-libs</code> package using
- <code>apt-get:</code>:
- <pre>apt-get install ia32-libs</pre>
- </li>
- <li>Next, install Java: <pre>apt-get install sun-java6-bin</pre></li>
- <li>The Ubuntu package manager does not currently offer an Eclipse 3.3
- version for download, so we recommend that you download Eclipse from
- eclipse.org (<a
- href="http://www.eclipse.org/downloads/">http://www.eclipse.org/
- downloads/</a>). A Java or RCP version of Eclipse is recommended.</li>
- <li>Follow the steps given in previous sections to install the SDK
- and the ADT plugin. </li>
- </ol>
- </li>
-</ul>
-
-<h3>Other Linux Notes</h3>
-
-<ul>
- <li>If JDK is already installed on your development computer, please
- take a moment to make sure that it meets the version requirements listed
- in the <a href="requirements.html">System Requirements</a>.
- In particular, note that some Linux distributions may include JDK 1.4 or Gnu
- Compiler for Java, both of which are not supported for Android development.</li>
-</ul>
-
-
-<h2 id="Troubleshooting">Troubleshooting ADT Installation</h2>
-
-<p> If you are having trouble downloading the ADT plugin after following the
-steps above, here are some suggestions: </p>
-
-<ul>
- <li>If Eclipse can not find the remote update site containing the ADT plugin,
-try changing the remote site URL to use http, rather than https. That is, set
-the Location for the remote site to:
-<pre>http://dl-ssl.google.com/android/eclipse/</pre></li>
-<li>If you are behind a firewall (such as a corporate firewall), make sure that
-you have properly configured your proxy settings in Eclipse. In Eclipse 3.3/3.4,
-you can configure proxy information from the main Eclipse menu in
-<strong>Window</strong> (on Mac OS X, <strong>Eclipse</strong>) >
-<strong>Preferences</strong> > <strong>General</strong> > <strong>Network
-Connections</strong>.</li>
-</ul>
-
-<p> If you are still unable to use Eclipse to download the ADT plugin as a
-remote update site, you can download the ADT zip file to your local machine and
-manually install it:</p>
-
-<ol>
- <li><a href="http://developer.android.com/sdk/preview/index.html">Download the
- ADT Plugin zip file</a> (do not unpack it).</li>
- <li>Follow steps 1 and 2 in the <a href="#InstallingADT">default install
- instructions</a> (above).</li>
- <li>In the Add Site dialog, click <strong>Archive</strong>.</li>
- <li>Browse and select the downloaded zip file.</li>
- <li>In Eclipse 3.5 only, enter a name for the local update site (e.g.,
- "Android Plugin") in the "Name" field.</li>
- <li>Click <strong>OK</strong>.
- <li>Follow the remaining procedures as listed for
- <a href="#InstallingADT">default installation</a> above,
- starting from step 4.</li>
-</ol>
-
-<p>To update your plugin once you've installed using the zip file, you will have
-to follow these steps again instead of the default update instructions.</p>
-
-<h4>Other install errors</h4>
-
-<p>Note that there are features of ADT that require some optional
-Eclipse components (for example, WST). If you encounter an error when
-installing ADT, your Eclipse installion might not include these components.
-For information about how to quickly add the necessary components to your
-Eclipse installation, see the troubleshooting topic
-<a href="{@docRoot}guide/appendix/faq/troubleshooting.html#installeclipsecomponents">ADT
-Installation Error: "requires plug-in org.eclipse.wst.sse.ui"</a>.</p>
-
-<h4>For Linux users</h4>
-<p>If you encounter this error when installing the ADT Plugin for Eclipse:
-<pre>
-An error occurred during provisioning.
-Cannot connect to keystore.
-JKS</pre>
-<p>
-...then your development machine lacks a suitable Java VM. Installing Sun
-Java 6 will resolve this issue and you can then reinstall the ADT
-Plugin.</p>
-
-
diff --git a/docs/html/sdk/RELEASENOTES.jd b/docs/html/sdk/RELEASENOTES.jd
index c2aa454..552b699 100644
--- a/docs/html/sdk/RELEASENOTES.jd
+++ b/docs/html/sdk/RELEASENOTES.jd
@@ -3,7 +3,50 @@
<p>This document provides version-specific information about Android SDK
releases. For the latest known issues, please ensure that you're viewing this
-page at <a href="http://developer.android.com/sdk/RELEASENOTES.html">http://developer.android.com/sdk/RELEASENOTES.html</a>.</p>
+page at <a
+href="http://developer.android.com/sdk/RELEASENOTES.html">http://developer.
+android.com/sdk/RELEASENOTES.html</a>.</p>
+
+<h2 id="multiversion_r1">Android SDK</h2>
+
+<p>The Android SDK has changed! If you've worked with the Android SDK before,
+you will notice several important differences:</p>
+
+<ul>
+<li style="margin-top:.5em">The SDK downloadable package includes <em>only</em>
+the latest version of the Android SDK Tools.</li>
+<li>Once you've installed the SDK, you now use the Android SDK and AVD Manager
+to download all of the SDK components that you need, such as Android platforms,
+SDK add-ons, tools, and documentation. </li>
+<li>The new approach is modular — you can install only the components you
+need and update any or all components without affecting your development
+environment.</li>
+<li>In short, once you've installed the new SDK, you will not need to download
+an SDK package again. Instead, you will use the Android SDK and AVD Manager to
+keep your development environment up-to-date. </li>
+</ul>
+
+<p>Note that if you are currently using the Android 1.6 SDK, you do not
+necessarily need to install the new SDK, since your existing SDK incudes the
+Android SDK and AVD Manager tool. To develop against Android 2.0, for example,
+you could just download the Android 2.0 platform into your existing SDK. </p>
+
+<p>Release notes for Android platforms that are downloadable into the SDK are
+now available from the "SDK" tab, under "Downloadable SDK Components."</p>
+
+<ul>
+<li>Release notes for the Android 2.0 platform are in the <a
+href="{@docRoot}sdk/android-2.0.html">Android 2.0, Release 1</a> document. </li>
+<li>You can find information about tools changes in the <a
+href="{@docRoot}sdk/tools-notes.html">SDK Tools Notes</a> and <a
+href="{@docRoot}sdk/adt-notes.html">ADT Plugin Notes</a>.</li>
+</ul>
+
+<p>To get started with the SDK, review the Quick Start summary on the <a
+href="{@docRoot}sdk/index.html">Android SDK download page</a> or read <a
+href="{@docRoot}sdk/installing.html">Installing the SDK</a> for more
+information. </p>
+
<h2 id="1.6_r1">Android 1.6 SDK, Release 1</h2>
diff --git a/docs/html/sdk/adding-components.jd b/docs/html/sdk/adding-components.jd
new file mode 100644
index 0000000..967c3521
--- /dev/null
+++ b/docs/html/sdk/adding-components.jd
@@ -0,0 +1,139 @@
+page.title=Adding SDK Components
+@jd:body
+
+
+<div id="qv-wrapper">
+<div id="qv">
+<h2>Quickview</h2>
+<ul>
+ <li>Use the Android SDK and AVD Manager to
+ keep your SDK up-to-date without having to install new
+ SDK directories.</li>
+ <li>The Android SDK and AVD Manager is available only with the
+ Android 1.6 SDK or later.</li>
+ <li>The Eclipse ADT plugin may require an update when installing
+ new tools or system images.</li>
+</ul>
+
+<h2>In this document</h2>
+<ol>
+ <li><a href="#InstallingComponents">Installing SDK Components</a>
+ <ol>
+ <li><a href="#AddingSites">Adding New Sites</a></li>
+ </ol>
+ </li>
+ <li><a href="#dependencies">Component Dependencies</a></li>
+</ol>
+</div>
+</div>
+
+<p>Adding and updating components in your Android SDK is fast and easy. To
+perform an update, use the <strong>Android SDK and AVD Manager</strong> to
+install or update the individual SDK components that you need. The Android SDK
+and AVD Manager tool is included in Android 1.6 and later SDK packages.</p>
+
+<p>It only takes a couple of clicks to install
+individual versions of the Android platform, new development tools, new documentation, and
+SDK add-ons. The new SDK components are automatically installed into your existing SDK
+directory, so you don't need to update your development environment to specify a
+new SDK location.</p>
+
+<p>Because each version of the Android platform can be installed as an individual component
+of your SDK, you can customize your development environment to the Android platforms
+you are targetting. Testing your app on multiple versions of
+the platform is very important in order to successfully operate on as many devices as possible.
+Be sure to install each version of the Android platform with which your app is compatible, then test
+your apps on <a href="{@docRoot}guide/developing/tools/avd.html">AVDs</a> that run each platform.</p>
+
+<p>If you develop applications using Eclipse, you may also need to update your
+ADT plugin when you update your development tools or in order to compile against
+a new version of the platform. See the <a
+href="{@docRoot}sdk/tools-notes.html">SDK Tools Notes</a> document for ADT
+compatibility.</p>
+
+
+<h2 id="InstallingComponents">Installing SDK Components</h2>
+
+<p>Use the Android SDK and AVD Manager to install new SDK components.
+You can launch the SDK and AVD Manager in one of these ways:</p>
+<ul>
+ <li>Execute the {@code android}</a> tool command with no options. If you
+haven't used the tool before, change to the <code><sdk>/tools</code>
+directory and run the command:
+ <pre style="width:400px">$ android</pre></li>
+ <li>If you have downloaded the SDK Tools (Revision 3 or higher) and are
+ running Windows, you can double-click "SDK Setup.exe" in the SDK directory.
+ <li>If you are developing in Eclipse with ADT, you can select
+ <strong>Window</strong> ><strong>Android SDK and AVD Manager</strong>.</li>
+</ul>
+
+<img src="{@docRoot}images/sdk_manager_packages.png" alt="" style="float:right" />
+
+<p>When a new platform version, add-on, set of development tools or
+documentation becomes available, you can quickly install them into your existing
+Android SDK:</p>
+<ol>
+ <li>Select <strong>Available Components</strong> in the left panel.
+ This will reveal all components currently available for download.</li>
+ <li>Select the components you'd like to install and click <strong>Install
+ Selected</strong>.</li>
+ <li>Verify and accept the components you want and click <strong>Install
+ Accepted</strong>. The components will now be installed into your existing
+ Android SDK directories.</li>
+</ol>
+
+<p>New platforms are automatically saved into the
+<code><em><sdk>/</em>platforms/</code> directory of your SDK;
+new add-ons are saved in the <code><em><sdk>/</em>add-ons/</code>
+directory; and new documentation is saved in the existing
+<code><em><sdk>/</em>docs/</code> directory (old docs are replaced).</p>
+
+<p class="note"><strong>Tip:</strong>
+Use the "Display updates only" checkbox to show only the components
+you do not have.</p>
+
+
+<h3 id="AddingSites">Adding New Sites</h3>
+
+<p>By default, <strong>Available Components</strong> only shows the default
+repository site, which offers platforms, SDK tools, documentation, the
+Google APIs Add-on, and other components. You can add other sites that host
+their own Android SDK add-ons, then download the SDK add-ons
+from those sites.</p>
+
+<p>For example, a mobile carrier or device manufacturer might offer additional
+API libraries that are supported by their own Android-powered devices. In order
+to develop using their libraries, you must install their Android SDK add-on. </p>
+
+<p>If a carrier or device manufacturer has hosted an SDK add-on repository file
+on their web site, follow these steps to add their site to the SDK and AVD
+Manager:</p>
+
+<ol>
+ <li>Select <strong>Available Components</strong> in the left panel.</li>
+ <li>Click <strong>Add Site</strong> and enter the URL of the
+{@code repository.xml} file. Click <strong>OK</strong>.</li>
+</ol>
+<p>Any SDK components available from the site will now be listed under
+<strong>Available Components</strong>.</p>
+
+
+<h2 id="dependencies">SDK Component Dependencies</h2>
+
+<p>In some cases, a specific SDK component may require a specific minimum
+version of another component or SDK tool. Such dependencies are documented
+in the release notes for each component. </p>
+
+<p>For example, there may be a dependency between the ADT plugin for Eclipse and
+a specific version of the SDK Tools component. When you install the SDK Tools
+component, you would then need to upgrade to the required version of ADT (if you
+are developing in Eclipse). In this case, you would find dependencies listed in
+the <a href="{@docRoot}sdk/adt-notes.html">ADT Plugin Notes</a> and <a
+href="{@docRoot}sdk/tools-notes.html">SDK Tools Notes</a> documents. </p>
+
+<p>Additionally, the development tools will notify you with debug warnings
+if there is dependency that you need to address. </p>
+
+
+
+
diff --git a/docs/html/sdk/adt-notes.jd b/docs/html/sdk/adt-notes.jd
new file mode 100644
index 0000000..639d5e8
--- /dev/null
+++ b/docs/html/sdk/adt-notes.jd
@@ -0,0 +1,59 @@
+page.title=ADT Plugin Notes
+@jd:body
+
+<p>Android Development Tools (ADT) is a development plugin for the Eclipse IDE. It
+extends the capabilites of Eclipse to let you quickly set up new Android
+projects, create an application UI, add components based on the Android
+Framework API, debug your applications using the Android SDK tools, and even export
+signed (or unsigned) APKs in order to distribute your application.</p>
+
+<p>This document provides version-specific information about ADT releases. To
+keep up-to-date on new releases, make sure that you view this page at <a
+href="http://developer.android.com/sdk/adt-notes.html">http://developer.
+android.com/sdk/adt-notes.html</a>.</p>
+
+<p>To install ADT in your Eclipse IDE environment, use the Eclipse Update Site
+feature. For more information, see <a
+href="{@docRoot}sdk/eclipse-adt.html">Installing and Updating ADT</a>. </p>
+
+<h2 id="0.9.4">ADT 0.9.4</h2>
+
+<p>ADT 0.9.4 provides several new features for developers, as described below.
+</p>
+
+<h3>Dependencies</h3>
+
+<p>ADT 0.9.4 requires features provided in SDK Tools, Revision 3. If you install
+ADT 0.9.4, which is highly recommended, you should use the Android SDK and AVD
+Manager to download SDK Tools 3 or higher into your SDK. For more information,
+see <a href="{@docRoot}sdk/adding-components.html">Adding SDK Components</a>.
+</p>
+
+<h3>Project Creation Wizard</h3>
+<ul>
+<li>New option to create a project from a sample by choosing it from a list.</li>
+</ul>
+
+<h3>Layout Editor</h3>
+<ul>
+<li>Improved Configuration selector that lets you see how your layout will
+render on different devices. Default device descriptions include ADP1
+and Google Ion, while SDK add-ons can also provide new descriptions.
+A new UI allows you to create custom descriptions.</li>
+<li>Adds a new clipping toggle, to let you see your full layout even if it's
+bigger than the screen.</li>
+</ul>
+
+<h3>DDMS Integration</h3>
+<ul>
+<li>Includes the improvements from the standlone DDMS, revision 3.</li>
+<li>Adds an option to open HPROF files into eclipse instead of writing them on
+disk. If a profiler such as MAT (<a href="http://eclipse.org/mat">Memory Analyzer
+Tool</a>) is installed, it'll open the file.</li>
+</ul>
+
+<h3>Android SDK and AVD Manager integration</h3>
+<ul>
+<li>Includes the improvements from the standalone Android SDK and AVD Manager,
+revision 3.</li>
+</ul>
\ No newline at end of file
diff --git a/docs/html/sdk/android-1.5.jd b/docs/html/sdk/android-1.5.jd
index 748f3ee..15d1938 100644
--- a/docs/html/sdk/android-1.5.jd
+++ b/docs/html/sdk/android-1.5.jd
@@ -1,118 +1,75 @@
-page.title=Android 1.5 Version Notes
-sdk.version=1.5_r1
-sys.date=April 2009
+page.title=Android 1.5, Release 3
+sdk.platform.version=1.5
+sdk.platform.apiLevel=3
+sdk.platform.majorMinor=major
+sdk.platform.releaseDate=April 2009
+sdk.platform.deployableDate=May 2009
+
@jd:body
+<div id="qv-wrapper">
+<div id="qv">
+
+ <h2>In this document</h2>
+ <ol>
+ <li><a href="#features">Platform Highlights</a></li>
+ <li><a href="#apps">Built-in Applications</a></li>
+ <li><a href="#locs">Locales</a></li>
+ <li><a href="#skins">Emulator Skins</a></li>
+ <li><a href="#notes">Other Notes</a></li>
+ <li><a href="#api">Framework API</a>
+ <ol>
+ <li><a href="#api-level">API level</a></li>
+ <li><a href="#api-changes">API changes summary</a></li>
+ <li><a href="{@docRoot}sdk/api_diff/{@sdkPlatformApiLevel}/changes.html">API differences report »</a> </li>
+ </ol></li>
+ </ol>
+
+ <h2>See Also</h2>
+ <ol>
+ <li><a href="{@docRoot}sdk/adding-components.html">Adding SDK Components</a></li>
+ </ol>
+
+</div>
+</div>
+
<p>
-<em>Date:</em> April 2009<br />
-<em>API Level:</em> <strong>3</strong></p>
+<em>Date:</em> {@sdkPlatformReleaseDate}<br />
+<em>API Level:</em> <strong>{@sdkPlatformApiLevel}</strong></p>
+
+<p>Android {@sdkPlatformVersion} is a {@sdkPlatformMajorMinor} platform release
+deployable to Android-powered handsets starting in {@sdkPlatformDeployableDate}.
+The release includes new features for users and developers, as well as changes
+in the Android framework API. </p>
+
+<p>For developers, the Android {@sdkPlatformVersion} platform is available as a
+downloadable component for the Android SDK. The downloadable platform includes a
+fully compliant Android library and system image, as well as a set of emulator
+skins, sample applications, and more. The downloadable platform is fully
+compliant and includes no external libraries. </p>
+
+<p>To get started developing or testing against the Android
+{@sdkPlatformVersion} platform, use the Android SDK and AVD Manager tool to
+download the platform into your Android 1.6 or later SDK. For more information,
+see <a href="{@docRoot}sdk/adding-components.html">Adding SDK
+Components</a>.</p>
-<p>This document provides version notes for the Android 1.5 system image included in the SDK. </p>
+<h2 id="features">Platform Highlights</h2>
-<ul>
-<li><a href="#overview">Overview</a>
-<li><a href="#overview">External Libraries</a>
-<li><a href="#comp">Device Compatibility</a>
-<li><a href="#apps">Built-in Applications</a>
-<li><a href="#locs">UI Localizations</a>
-<li><a href="#features">New Features</a>
-<li><a href="#api-changes">API Changes</a>
-</ul>
+<p>For a list of new user features and platform highlights, see the <a
+href="http://developer.android.com/sdk/android-{@sdkPlatformVersion}-highlights.html">Android
+{@sdkPlatformVersion} Platform Highlights</a> document.</p>
-<h2 id="overview">Overview</h2>
-
-<p>The Android 1.5 system delivered in the SDK (as library and system image) is
-the development counterpart to the Android 1.5 production system image,
-deployable to Android-powered handsets starting in May 2009. The system is fully
-compliant and includes no external libraries. This is the first version of the
-Android SDK that does not include the Maps external library.</p>
-
-<p>The Android 1.5 system delivers an updated version of the framework
-API. As with previous versions, the Android 1.5 API
-is assigned an integer identifier — <strong>3</strong> — that is
-stored in the system itself. This identifier, called the "API Level", allows the
-system to correctly determine whether an application is compatible with
-the system, prior to installing the application.</p>
-
-<p>Applications can reference a specific API Level value in their
-manifest files, to indicate the minimum version of the Android system
-required to run the application. To reference a minimum API Level, applications
-can add an <code>android:minSdkVersion</code> attribute in their manifest files.
-The value of the attribute is an integer corresponding to an API Level
-identifier. Prior to installing an application, the system then checks the value of
-<code>android:minSdkVersion</code> and allows the install only
-if the referenced integer is less than or equal to the API Level integer stored
-in the system itself. </p>
-
-<p>When you migrate your application to the new SDK, you will need to choose
-the platform version against which you will compile your application. In
-general, you should compile your application against the lowest possible
-version of the platform that your application can support. After you determine
-the lowest version, you should ensure that your application's manifest file
-defines the API Level of the lowest compatible platform version in the
-<code>android:minSdkVersion</code> attribute.
-
-<p>After compiling your application, you should make sure to test it on the
-platform specified in the application's <code>android:minSdkVersion</code> attribute. To
-ensure forward-compatibility, you should also run the application on platforms
-using a higher API Level than that used by your application. To run your
-application against different platform versions in the emulator, you create an
-AVD for each platform version that you want to test. For more information about
-AVDs, see <a href="{@docRoot}guide/developing/tools/avd.html">Android Virtual
-Devices</a>. If you are using a physical device for testing, ensure that you
-know the API Level of the Android platform it runs.</p>
-
-<p>If you build an application using the Android 1.5 library and your
-application makes use of any APIs introduced in API Level 3, you <strong><span
-style="color:red;">must</span></strong> set the
-<code>android:minSdkVersion</code> attribute in the application's manifest to
-"3". </p>
-
-<p>Specifically, you define the <code>android:minSdkVersion</code>
-attribute in a <code><uses-sdk></code> element as a child of
-<code><manifest></code> in the manifest file. When set, the
-attribute looks like this: </p>
-
-<pre><manifest>
- ...
- <uses-sdk android:minSdkVersion="3" />
- ...
-</manifest></pre>
-
-<p>By setting <code>android:minSdkVersion</code> in this way, you ensure that
-users will only be able to install your application if their devices are running
-a compatible version of the Android platform. In turn, this ensures that your
-application will function properly on their devices. This is especially
-important if your application uses <a href="#apichange">APIs or system features
-introduced in Android 1.5</a>. </p>
-
-<p>If your application uses APIs introduced in Android 1.5 but does not
-declare <code><uses-sdk android:minSdkVersion="3" /></code>, then it will
-run properly on Android 1.5 devices but <em>not</em> on Android 1.0
-devices. In the latter case, the application will crash at runtime when
-it tries to use the Android 1.5 APIs.</p>
-
-<p>Conversely, if your application does not use any new APIs introduced in
-Android 1.5, the application will in most cases function normally on devices
-running a later version of the platform. However, if you have published
-the application, you are strongly encouraged to install and test your
-application on the Android 1.5 system image included in the SDK. This will
-ensure a smooth transition for users, as they upgrade their devices to
-the new version of the Android platform. </p>
-
-<p>Finally, if your application does not use any new APIs introduced since
-Android 1.1, you can indicate general Android 1.1 compatibility by
-setting the attribute to "2". If your application does not use any
-new APIs introduced since Android 1.0, you can remove the attribute or
-set it to "1". However,
-before publishing your application, you must make sure to compile your
-application against the Android library that corresponds to the application's
-<code>android:minSdkVeresion</code> value.</p>
<h2 id="apps">Built-in Applications</h2>
-<p>The system image includes these built-in applications:</p>
+<p>The system image included in the downloadable platform provides these
+built-in applications:</p>
+
+<table style="border:0;padding-bottom:0;margin-bottom:0;">
+<tr>
+<td style="border:0;padding-bottom:0;margin-bottom:0;">
<ul>
<li>Alarm Clock</li>
<li>Browser</li>
@@ -122,6 +79,10 @@
<li>Contacts</li>
<li>Custom Locale (developer app)</li>
<li>Dev Tools (developer app)</li>
+ </ul>
+</td>
+<td style="border:0;padding-bottom:0;margin-bottom:0;padding-left:5em;">
+ <ul>
<li>Dialer</li>
<li>Email</li>
<li>Gallery</li>
@@ -131,18 +92,22 @@
<li>Settings</li>
<li>Spare Parts (developer app)</li>
</ul>
+</td>
+</tr>
+</table>
-<h2 id="locs">Locales</h2>
+<h2 id="locs" style="margin-top:.75em;">Locales</h2>
-<p>The system image provides a variety of built-in locales. In some cases,
-region-specific strings are available for the locales. In other cases,
-a default version of the language is used. The languages that will be
-available in the Android 1.5 system image are listed below (with
-<em>language</em>_<em>country/region</em> locale descriptor).</p>
+<p>The system image included in the downloadable platform provides a variety of
+built-in locales. In some cases, region-specific strings are available for the
+locales. In other cases, a default version of the language is used. The
+languages that are available in the Android {@sdkPlatformVersion} system
+image are listed below (with <em>language</em>_<em>country/region</em>
+locale descriptor).</p>
-<table style="border:0;">
+<table style="border:0;padding-bottom:0;margin-bottom:0;">
<tr>
-<td style="border:0">
+<td style="border:0;padding-bottom:0;margin-bottom:0;">
<ul>
<li>Chinese, PRC (zh_CN)</li>
<li>Chinese, Taiwan (zh_TW)</li>
@@ -151,7 +116,7 @@
<li>Dutch, Belgium (nl_BE)</li>
<li>English, US (en_US)</li>
<li>English, Britain (en_GB)</li>
-<li>English, Canada(en_CA)</li>
+<li>English, Canada (en_CA)</li>
<li>English, Australia (en_AU)</li>
<li>English, New Zealand (en_NZ)</li>
<li>English, Singapore(en_SG)</li>
@@ -159,11 +124,11 @@
<li>French, Belgium (fr_BE)</li>
</ul>
</td>
-<td style="border:0;padding-left:5em;">
+<td style="border:0;padding-bottom:0;margin-bottom:0;padding-left:5em;">
<li>French, Canada (fr_CA)</li>
<li>French, Switzerland (fr_CH)</li>
<li>German, Germany (de_DE)</li>
-<li>German, Austria(de_AT)</li>
+<li>German, Austria (de_AT)</li>
<li>German, Switzerland (de_CH)</li>
<li>German, Liechtenstein (de_LI)</li>
<li>Italian, Italy (it_IT)</li>
@@ -177,29 +142,65 @@
</tr>
</table>
-<p>Localized UI strings match the locales that are displayable in
-the emulator, accessible through the device Settings application.</p>
+<p>Localized UI strings match the locales that are accessible
+through Settings.</p>
-<h2 id="features">New Features</h2>
+<h2 id="skins">Emulator Skins</h2>
-<p>For a list of new system features, see the <a
-href="{@docRoot}sdk/android-1.5-highlights.html">Android 1.5 Platform
-Highlights</a> document.</p>
-
-<h2 id="api-changes">API Changes</h2>
-
-<h3>Overview</strong></h3>
+<p>The downloadable platform includes a set of emulator skins that you can use for modeling your application in different screen sizes and resolutions. The emulator skins are: </p>
<ul>
-<li>UI framework</li>
+ <li>
+ QVGA-P (240x320, low density, small screen)
+ </li>
+ <li>
+ QVGA-L (320x480, low density, small screen)
+ </li>
+ <li>
+ HVGA (320x480, medium density, normal screen)
+ </li>
+ <li>
+ HVGA-P (320x480, medium density, normal screen)
+ </li>
+ <li>
+ HVGA-L (320x480, medium density, normal screen)
+ </li>
+</ul>
+
+<p>For more information about how to develop an application that displays and functions properly on all Android-powered devices, see <a href="{@docRoot}guide/practices/screens_support.html">Supporting Multiple Screens</a>.</p>
+
+
+<h2 id="api">Framework API</h2>
+
+<p>The sections below provide information about the application framework API provided by the Android {@sdkPlatformVersion} platform. </p>
+
+
+<h3 id="api-level">API level</h3>
+
+<p>The Android {@sdkPlatformVersion} platform delivers an updated version of the framework
+API. As with previous versions, the Android {@sdkPlatformVersion} API
+is assigned an integer identifier — <strong>{@sdkPlatformApiLevel}</strong> — that is
+stored in the system itself. This identifier, called the "API Level", allows the
+system to correctly determine whether an application is compatible with
+the system, prior to installing the application. </p>
+
+<p>To use APIs introduced in Android {@sdkPlatformVersion} in your application, you need to
+set the proper value, "{@sdkPlatformApiLevel}", in the attributes of the <code><uses-sdk></code>
+element in your application's manifest. </p>
+
+<p>For more information about how to use API Level, see the <a
+href="{@docRoot}guide/appendix/api-levels.html">API Levels</a> document. </p>
+
+<h3 id="api-changes">API changes summary</h3>
+
+<h4>UI framework</h4>
<ul>
<li>Framework for easier background/UI thread interaction</li>
<li>New {@link android.widget.SlidingDrawer SlidingDrawer} widget</li>
<li>New {@link android.widget.HorizontalScrollView HorizontalScrollview} widget</li>
</ul>
-</li>
-<li>AppWidget framework
+<h4>AppWidget framework</h4>
<ul>
<li>APIs for creating secure home screen {@link android.appwidget
AppWidgets}. For information about how to use AppWidgets, see the Developer's
@@ -211,9 +212,8 @@
<li>APIs for populating {@link android.provider.LiveFolders Live Folders}
with custom content.</li>
</ul>
-</li>
-<li>Media framework</li>
+<h4>Media framework</h4>
<ul>
<li>Raw audio recording and playback APIs</li>
<li>Interactive MIDI playback engine</li>
@@ -221,37 +221,33 @@
<li>Video and photo sharing Intents</li>
<li>Media search Intent</li>
</ul>
-</li>
-<li>Input Method framework
+<h4>Input Method framework </h4>
<ul>
<li>{@link android.inputmethodservice.InputMethodService Input Method
Service} framework</li>
<li>Text-prediction engine</li>
<li>Ability to provide downloadable IMEs to users</li>
</ul>
-</li>
-<li>Application-defined hardware requirements
+<h4>Application-defined hardware requirements</h4>
<p>Applications can now use a new element in their manifest files, <a
-href="{@docRoot}guide/topics/manifest/uses-configuration-element.html"><uses-
-configuration></a> to indicate to the Android system what hardware features
+href="{@docRoot}guide/topics/manifest/uses-configuration-element.html"><code><uses-configuration></code></a>
+ to indicate to the Android system what hardware features
they require in order to function properly. For example, an application might
use the element to specify that it requires a physical keyboard or a particular
navigation device, such as a trackball. Prior to installing the application, the
Android system checks the attributes defined for the
<code><uses-configuration></code> element and allows the installation to
continue only if the required hardware is present.</p>
-</li>
-<li>Speech recognition framework
+<h4>Speech recognition framework</h4>
<ul>
<li>Support for using speech recognition libraries via Intent. See {@link
android.speech.RecognizerIntent RecognizerIntent}.</li>
</ul>
-</li>
-<li>Miscellaneous API additions
+<h4>Miscellaneous API additions</h4>
<ul>
<li>LocationManager - Applications can get location change updates via
Intent</li>
@@ -263,17 +259,10 @@
<li>Broadcast Intent for app update install succeeded - for smoother app
upgrade experience</li>
</ul>
-</li>
-
-</ul>
-
-<h3 id="api-diff">API Change Details</h3>
-
-<p>For a detailed view of API changes in this platform (API Level 3), see the <a
-href="{@docRoot}sdk/api_diff/3/changes.html">API Differences Report</a>.</p>
+<h3 id="api-diff">API differences report</h3>
-
-
-
+<p>For a detailed view of API changes in Android {@sdkPlatformVersion} (API Level {@sdkPlatformApiLevel}), as compared to
+the previous version, see the <a href="{@docRoot}sdk/api_diff/{@sdkPlatformApiLevel}/changes.html">API
+Differences Report</a>.</p>
diff --git a/docs/html/sdk/android-1.6.jd b/docs/html/sdk/android-1.6.jd
index 5dd2d95..38112b5 100644
--- a/docs/html/sdk/android-1.6.jd
+++ b/docs/html/sdk/android-1.6.jd
@@ -1,48 +1,75 @@
-page.title=Android 1.6 Version Notes
+page.title=Android 1.6, Release 1
+sdk.platform.version=1.6
+sdk.platform.apiLevel=4
+sdk.platform.majorMinor=minor
+sdk.platform.releaseDate=September 2009
+sdk.platform.deployableDate=October 2009
@jd:body
+<div id="qv-wrapper">
+<div id="qv">
+
+ <h2>In this document</h2>
+ <ol>
+ <li><a href="#features">Platform Highlights</a></li>
+ <li><a href="#apps">Built-in Applications</a></li>
+ <li><a href="#locs">Locales</a></li>
+ <li><a href="#skins">Emulator Skins</a></li>
+ <li><a href="#notes">Other Notes</a></li>
+ <li><a href="#api">Framework API</a>
+ <ol>
+ <li><a href="#api-level">API level</a></li>
+ <li><a href="#api-changes">API changes summary</a></li>
+ <li><a href="{@docRoot}sdk/api_diff/{@sdkPlatformApiLevel}/changes.html">API differences report »</a> </li>
+ </ol></li>
+ </ol>
+
+ <h2>See Also</h2>
+ <ol>
+ <li><a href="{@docRoot}sdk/adding-components.html">Adding SDK Components</a></li>
+ </ol>
+
+</div>
+</div>
+
<p>
-<em>Date:</em> September 2009<br />
-<em>API Level:</em> <strong>4</strong></p>
+<em>Date:</em> {@sdkPlatformReleaseDate}<br />
+<em>API Level:</em> <strong>{@sdkPlatformApiLevel}</strong></p>
+
+<p>Android {@sdkPlatformVersion} is a {@sdkPlatformMajorMinor} platform release
+deployable to Android-powered handsets starting in {@sdkPlatformDeployableDate}.
+The release includes new features for users and developers, as well as changes
+in the Android framework API. </p>
+
+<p>For developers, the Android {@sdkPlatformVersion} platform is available as a
+downloadable component for the Android SDK. The downloadable platform includes a
+fully compliant Android library and system image, as well as a set of emulator
+skins, sample applications, and more. The downloadable platform is fully
+compliant and includes no external libraries. </p>
+
+<p>To get started developing or testing against the Android
+{@sdkPlatformVersion} platform, use the Android SDK and AVD Manager tool to
+download the platform into your Android 1.6 or later SDK. For more information,
+see <a href="{@docRoot}sdk/adding-components.html">Adding SDK
+Components</a>.</p>
-<p>This document provides version notes for the Android 1.6 system image included in the SDK. </p>
-
-<ul>
-<li><a href="#overview">Overview</a>
-<li><a href="#features">Release Highlights</a>
-<li><a href="#apps">Built-in Applications</a>
-<li><a href="#locs">Locales</a>
-<li><a href="#api-changes">API Changes</a>
-</ul>
-
-<h2 id="overview">Overview</h2>
-
-<p>The Android 1.6 system delivered in the SDK (as library and system image) is
-the development counterpart to the Android 1.6 production system image, which is
-deployable to Android-powered handsets starting October 2009. The system is
-fully compliant and includes no external libraries. </p>
-
-<p>The Android 1.6 system delivers an updated version of the framework
-API. As with previous versions, the Android 1.6 API
-is assigned an integer identifier — <strong>4</strong> — that is
-stored in the system itself. This identifier, called the "API Level", allows the
-system to correctly determine whether an application is compatible with
-the system, prior to installing the application. </p>
-
-<p>For more information about how to use API Level, see the <a
-href="{@docRoot}guide/appendix/api-levels.html">API Levels</a> document. </p>
-
-<h2 id="features">Highlights</h2>
+<h2 id="features">Platform Highlights</h2>
<p>For a list of new user features and platform highlights, see the <a
-href="http://developer.android.com/sdk/android-1.6-highlights.html">Android 1.6 Platform
-Highlights</a> document.</p>
+href="http://developer.android.com/sdk/android-{@sdkPlatformVersion}-highlights.html">Android
+{@sdkPlatformVersion} Platform Highlights</a> document.</p>
+
<h2 id="apps">Built-in Applications</h2>
-<p>The system image includes these built-in applications:</p>
+<p>The system image included in the downloadable platform provides these
+built-in applications:</p>
+
+<table style="border:0;padding-bottom:0;margin-bottom:0;">
+<tr>
+<td style="border:0;padding-bottom:0;margin-bottom:0;">
<ul>
<li>Alarm Clock</li>
<li>Browser</li>
@@ -53,6 +80,10 @@
<li>Custom Locale (developer app)</li>
<li>Dev Tools (developer app)</li>
<li>Dialer</li>
+ </ul>
+</td>
+<td style="border:0;padding-bottom:0;margin-bottom:0;padding-left:5em;">
+ <ul>
<li>Email</li>
<li>Gallery</li>
<li>Gestures Builder</li>
@@ -62,79 +93,52 @@
<li>Settings</li>
<li>Spare Parts (developer app)</li>
</ul>
+</td>
+</tr>
+</table>
-<h2 id="locs">Locales</h2>
+<h2 id="locs" style="margin-top:.75em;">Locales</h2>
-<p>The system image provides a variety of built-in locales. In some cases,
-region-specific strings are available for the locales. In other cases,
-a default version of the language is used. The languages that will be
-available in the Android 1.6 system image are listed below (with
-<em>language</em>_<em>country/region</em> locale descriptor).</p>
+<p>The system image included in the downloadable platform provides a variety of
+built-in locales. In some cases, region-specific strings are available for the
+locales. In other cases, a default version of the language is used. The
+languages that are available in the Android {@sdkPlatformVersion} system
+image are listed below (with <em>language</em>_<em>country/region</em>
+locale descriptor).</p>
-<table style="border:0;">
+<table style="border:0;margin-bottom:0;padding-bottom:0;">
<tr>
-<td style="border:0">
-<ul style="margin-bottom:0;">
-<li>Arabic, Egypt (ar_EG)</li>
-<li>Arabic, Israel (ar_IL)</li>
-<li>Bulgarian, Bulgaria (bg_BG)</li>
+<td style="border:0;padding-bottom:0;margin-bottom:0;">
+<ul>
<li>Chinese, PRC (zh_CN)</li>
<li>Chinese, Taiwan (zh_TW)</li>
-<li>Croatian, Croatia (hr_HR)</li>
-<li>Czech, Czech Republic (cs_CZ)</li>
-<li>Danish, Denmark (da_DK)</li>
+<li>Czech (cs_CZ)</li>
<li>Dutch, Netherlands (nl_NL)</li>
<li>Dutch, Belgium (nl_BE)</li>
<li>English, US (en_US)</li>
<li>English, Britain (en_GB)</li>
<li>English, Canada (en_CA)</li>
<li>English, Australia (en_AU)</li>
-<li>English, India (en_IN)</li>
-<li>English, Ireland (en_IE)</li>
<li>English, New Zealand (en_NZ)</li>
-<li>English, Singapore (en_SG)</li>
-<li>English, South Africa (en_ZA)</li>
-<li>Finnish, Finland (fi_FI)</li>
+<li>English, Singapore(en_SG)</li>
<li>French, France (fr_FR)</li>
<li>French, Belgium (fr_BE)</li>
+</ul>
+</td>
+<td style="border:0;padding-bottom:0;margin-bottom:0;padding-left:5em;">
<li>French, Canada (fr_CA)</li>
<li>French, Switzerland (fr_CH)</li>
<li>German, Germany (de_DE)</li>
<li>German, Austria (de_AT)</li>
<li>German, Switzerland (de_CH)</li>
<li>German, Liechtenstein (de_LI)</li>
-</ul>
-</td>
-<td style="border:0;padding-left:5em;">
-<ul style="margin-bottom:0;">
-<li>Greek, Greece (el_GR)</li>
-<li>Hindi, India (hi_IN)</li>
-<li>Hungarian, Hungary (hu_HU)</li>
-<li>Indonesian, Indonesia (id_ID)</li>
<li>Italian, Italy (it_IT)</li>
<li>Italian, Switzerland (it_CH)</li>
-<li>Japanese, Japan (ja_JP)</li>
-<li>Korean, Korea (ko_KR)</li>
-<li>Latvian, Latvia (lv_LV)</li>
-<li>Lithuanian, Lithuania (lt_LT)</li>
-<li>Norwegian Bokmål, Norway (nb_NO)</li>
-<li>Polish, Poland (pl_PL)</li>
-<li>Portuguese, Brazil (pt_BR)</li>
-<li>Portuguese, Portugal (pt_PT)</li>
-<li>Romanian, Romania (ro_RO)</li>
-<li>Russian, Russia (ru_RU)</li>
-<li>Serbian, Serbia (sr_RS)</li>
-<li>Slovak, Slovakia (sk_SK)</li>
-<li>Slovenian, Slovenia (sl_SI)</li>
-<li>Spanish, Spain (es_ES)</li>
-<li>Spanish, US (es_US)</li>
-<li>Swedish, Sweden (sv_SE)</li>
-<li>Thai, Thailand (th_TH)</li>
-<li>Tagalog, Philippines (tl_PH)</li>
-<li>Turkish, Turkey (tr_TR)</li>
-<li>Ukranian, Ukrania (uk_UA)</li>
-<li>Vietnamese, Vietnam (vi_VN)</li>
-</ul>
+<li>Japanese (ja_JP)</li>
+<li>Korean (ko_KR)</li>
+<li>Polish (pl_PL)</li>
+<li>Russian (ru_RU)</li>
+<li>Spanish (es_ES)</li>
</td>
</tr>
</table>
@@ -142,7 +146,50 @@
<p>Localized UI strings match the locales that are accessible
through Settings.</p>
-<h2 id="api-changes">API Changes</h2>
+<h2 id="skins">Emulator Skins</h2>
+
+<p>The downloadable platform includes a set of emulator skins that you can use for modeling your application in different screen sizes and resolutions. The emulator skins are: </p>
+
+<ul>
+ <li>
+ QVGA (240x320, low density, small screen)
+ </li>
+ <li>
+ HVGA (320x480, medium density, normal screen)
+ </li>
+ <li>
+ WVGA800 (480x800, high density, normal screen)
+ </li>
+ <li>
+ WVGA854 (480x854 high density, normal screen)
+ </li>
+</ul>
+
+<p>For more information about how to develop an application that displays and functions properly on all Android-powered devices, see <a href="{@docRoot}guide/practices/screens_support.html">Supporting Multiple Screens</a>.</p>
+
+
+<h2 id="api">Framework API</h2>
+
+<p>The sections below provide information about the application framework API provided by the Android {@sdkPlatformVersion} platform. </p>
+
+
+<h3 id="api-level">API level</h3>
+
+<p>The Android {@sdkPlatformVersion} platform delivers an updated version of the framework
+API. As with previous versions, the Android {@sdkPlatformVersion} API
+is assigned an integer identifier — <strong>{@sdkPlatformApiLevel}</strong> — that is
+stored in the system itself. This identifier, called the "API Level", allows the
+system to correctly determine whether an application is compatible with
+the system, prior to installing the application. </p>
+
+<p>To use APIs introduced in Android {@sdkPlatformVersion} in your application, you need to
+set the proper value, "{@sdkPlatformApiLevel}", in the attributes of the <code><uses-sdk></code>
+element in your application's manifest. </p>
+
+<p>For more information about how to use API Level, see the <a
+href="{@docRoot}guide/appendix/api-levels.html">API Levels</a> document. </p>
+
+<h3 id="api-changes">API changes summary</h3>
<h4 id="UIFramework">UI framework</h4>
<ul>
@@ -164,7 +211,9 @@
correct scaling. The framework will automatically scale bitmaps and
nine-patches based on the density the resource was found under and the
density of the screen, etc.
- </li>
+ </li><p>To use APIs introduced in Android {@sdkPlatformVersion} in your application, you need to
+set the proper value, "{@sdkPlatformApiLevel}", in the attributes of the <code><uses-sdk></code>
+element in your application's manifest. </p>
</ul>
<h4>Search framework</h4>
@@ -318,7 +367,8 @@
</ul>
-<h3 id="api-diff">API Change Details</h3>
+<h3 id="api-diff">API differences report</h3>
-<p>For a detailed view of API changes in Android 1.6 (API Level 4), see the <a
-href="{@docRoot}sdk/api_diff/4/changes.html">API Differences Report</a>.</p>
+<p>For a detailed view of API changes in Android {@sdkPlatformVersion} (API Level {@sdkPlatformApiLevel}), as compared to
+the previous version, see the <a href="{@docRoot}sdk/api_diff/{@sdkPlatformApiLevel}/changes.html">API
+Differences Report</a>.</p>
diff --git a/docs/html/sdk/android-2.0.jd b/docs/html/sdk/android-2.0.jd
new file mode 100644
index 0000000..57283e5
--- /dev/null
+++ b/docs/html/sdk/android-2.0.jd
@@ -0,0 +1,271 @@
+page.title=Android 2.0, Release 1
+sdk.platform.version=2.0
+sdk.platform.apiLevel=5
+sdk.platform.majorMinor=major
+sdk.platform.releaseDate=October 2009
+sdk.platform.deployableDate=November 2009
+
+@jd:body
+
+<div id="qv-wrapper">
+<div id="qv">
+
+ <h2>In this document</h2>
+ <ol>
+ <li><a href="#features">Platform Highlights</a></li>
+ <li><a href="#apps">Built-in Applications</a></li>
+ <li><a href="#locs">Locales</a></li>
+ <li><a href="#skins">Emulator Skins</a></li>
+ <li><a href="#dev-features">Developer Features</a></li>
+ <li><a href="#api">Framework API</a>
+ <ol>
+ <li><a href="#api-level">API level</a></li>
+ <li><a href="#api-changes">API changes summary</a></li>
+ <li><a href="{@docRoot}sdk/api_diff/{@sdkPlatformApiLevel}/changes.html">API differences report »</a> </li>
+ </ol></li>
+ </ol>
+
+ <h2>See Also</h2>
+ <ol>
+ <li><a href="{@docRoot}sdk/adding-components.html">Adding SDK Components</a></li>
+ </ol>
+
+</div>
+</div>
+
+<p>
+<em>Date:</em> {@sdkPlatformReleaseDate}<br />
+<em>API Level:</em> <strong>{@sdkPlatformApiLevel}</strong></p>
+
+<p>Android {@sdkPlatformVersion} is a {@sdkPlatformMajorMinor} platform release
+deployable to Android-powered handsets starting in {@sdkPlatformDeployableDate}.
+The release includes new features for users and developers, as well as changes
+in the Android framework API. </p>
+
+<p>For developers, the Android {@sdkPlatformVersion} platform is available as a
+downloadable component for the Android SDK. The downloadable platform includes a
+fully compliant Android library and system image, as well as a set of emulator
+skins, sample applications, and more. The downloadable platform is fully
+compliant and includes no external libraries. </p>
+
+<p>To get started developing or testing against the Android
+{@sdkPlatformVersion} platform, use the Android SDK and AVD Manager tool to
+download the platform into your Android 1.6 or later SDK. For more information,
+see <a href="{@docRoot}sdk/adding-components.html">Adding SDK
+Components</a>.</p>
+
+
+<h2 id="features">Platform Highlights</h2>
+
+<p>For a list of new user features and platform highlights, see the <a
+href="http://developer.android.com/sdk/android-{@sdkPlatformVersion}-highlights.html">Android
+{@sdkPlatformVersion} Platform Highlights</a> document.</p>
+
+<h2 id="apps">Built-in Applications</h2>
+
+<p>The system image included in the downloadable platform provides these
+built-in applications:</p>
+
+<table style="border:0;padding-bottom:0;margin-bottom:0;">
+<tr>
+<td style="border:0;padding-bottom:0;margin-bottom:0;">
+ <ul>
+ <li>Alarm Clock</li>
+ <li>Browser</li>
+ <li>Calculator</li>
+ <li>Camcorder</li>
+ <li>Camera</li>
+ <li>Contacts</li>
+ <li>Custom Locale (developer app)</li>
+ <li>Dev Tools (developer app)</li>
+ <li>Dialer</li>
+ </ul>
+</td>
+<td style="border:0;padding-bottom:0;margin-bottom:0;padding-left:5em;">
+ <ul>
+ <li>Email</li>
+ <li>Gallery</li>
+ <li>Gestures Builder</li>
+ <li>IME for Japanese text input</li>
+ <li>Messaging</li>
+ <li>Music</li>
+ <li>Settings</li>
+ <li>Spare Parts (developer app)</li>
+ </ul>
+</td>
+</tr>
+</table>
+
+<h2 id="locs" style="margin-top:.75em;">Locales</h2>
+
+<p>The system image included in the downloadable platform provides a variety of
+built-in locales. In some cases, region-specific strings are available for the
+locales. In other cases, a default version of the language is used. The
+languages that are available in the Android {@sdkPlatformVersion} system
+image are listed below (with <em>language</em>_<em>country/region</em> locale
+descriptor).</p>
+
+<table style="border:0;padding-bottom:0;margin-bottom:0;">
+<tr>
+<td style="border:0;padding-bottom:0;margin-bottom:0;">
+<ul>
+<li>Chinese, PRC (zh_CN)</li>
+<li>Chinese, Taiwan (zh_TW)</li>
+<li>Czech (cs_CZ)</li>
+<li>Dutch, Netherlands (nl_NL)</li>
+<li>Dutch, Belgium (nl_BE)</li>
+<li>English, US (en_US)</li>
+<li>English, Britain (en_GB)</li>
+<li>English, Canada (en_CA)</li>
+<li>English, Australia (en_AU)</li>
+<li>English, New Zealand (en_NZ)</li>
+<li>English, Singapore(en_SG)</li>
+<li>French, France (fr_FR)</li>
+<li>French, Belgium (fr_BE)</li>
+</ul>
+</td>
+<td style="border:0;padding-bottom:0;margin-bottom:0;padding-left:5em;">
+<li>French, Canada (fr_CA)</li>
+<li>French, Switzerland (fr_CH)</li>
+<li>German, Germany (de_DE)</li>
+<li>German, Austria (de_AT)</li>
+<li>German, Switzerland (de_CH)</li>
+<li>German, Liechtenstein (de_LI)</li>
+<li>Italian, Italy (it_IT)</li>
+<li>Italian, Switzerland (it_CH)</li>
+<li>Japanese (ja_JP)</li>
+<li>Korean (ko_KR)</li>
+<li>Polish (pl_PL)</li>
+<li>Russian (ru_RU)</li>
+<li>Spanish (es_ES)</li>
+</td>
+</tr>
+</table>
+
+<p>Localized UI strings match the locales that are accessible
+through Settings.</p>
+
+<h2 id="skins">Emulator Skins</h2>
+
+<p>The downloadable platform includes a set of emulator skins that you can use for modeling your application in different screen sizes and resolutions. The emulator skins are: </p>
+
+<ul>
+ <li>
+ QVGA (240x320, low density, small screen)
+ </li>
+ <li>
+ WQVGA (240x400, low density, normal screen)
+ </li>
+ <li>
+ FWQVGA (240x432, low density, normal screen)
+ </li>
+ <li>
+ HVGA (320x480, medium density, normal screen)
+ </li>
+ <li>
+ WVGA800 (480x800, high density, normal screen)
+ </li>
+ <li>
+ WVGA854 (480x854 high density, normal screen)
+ </li>
+</ul>
+
+<p>For more information about how to develop an application that displays and functions properly on all Android-powered devices, see <a href="{@docRoot}guide/practices/screens_support.html">Supporting Multiple Screens</a>.</p>
+
+<h2 id="dev-features">Developer Features</h2>
+
+<p>The sections below provide information about new developer features offered by the downloadable Android 2.0 platform component.</p>
+
+<h3 id="ant">Ant Support</h3>
+
+<ul>
+<li>Debug- and release-mode application signing. Release-mode signing includes integrated support for <code>zipalign</code> optimization. For more information, see <a href="{@docRoot}guide/publishing/app-signing.html#releasecompile">Signing Your Applications</a>.</li>
+
+<li>Adds new Ant build system with support for Emma instrumentation projects (code coverage).</li>
+</ul>
+
+<h2 id="api">Framework API</h2>
+
+<p>The sections below provide information about the application framework API provided by the Android {@sdkPlatformVersion} platform. </p>
+
+
+<h3 id="api-level">API level</h3>
+
+<p>The Android {@sdkPlatformVersion} platform delivers an updated version of the framework
+API. As with previous versions, the Android {@sdkPlatformVersion} API
+is assigned an integer identifier — <strong>{@sdkPlatformApiLevel}</strong> — that is
+stored in the system itself. This identifier, called the "API Level", allows the
+system to correctly determine whether an application is compatible with
+the system, prior to installing the application. </p>
+
+<p>To use APIs introduced in Android {@sdkPlatformVersion} in your application, you need to
+set the proper value, "{@sdkPlatformApiLevel}", in the attributes of the <code><uses-sdk></code>
+element in your application's manifest. </p>
+
+<p>For more information about how to use API Level, see the <a
+href="{@docRoot}guide/appendix/api-levels.html">API Levels</a> document. </p>
+
+<h3 id="api-changes">API changes summary</h3>
+
+<h4>Bluetooth</h4>
+<ul>
+<li>Turn on/off Bluetooth</li>
+<li>Device and service discovery</li>
+<li>Connect to a remote device using RFCOMM and send/receive data</li>
+<li>Advertise RFCOMM services and listen for incoming RFCOMM connection</li>
+</ul>
+
+<h4>Sync adapters </h4>
+<ul>
+<li>New APIs for sync adapters to connect to any backend</li>
+</ul>
+
+<h4>Account Manager</h4>
+<ul>
+<li>Centralized account manager API to securely store and access auth tokens/passwords </li>
+</ul>
+
+<h4>Contacts</h4>
+<ul>
+<li>New contacts APIs that allow for data from multiple accounts</li>
+<li>New Quick Contact framework APIs enable developers to create contact badges in their app. Clicking on the badge opens a window with a list of ways to contact the person with one click.</li>
+</ul>
+
+<h4>WebView</h4>
+<ul>
+<li>Deprecated classes: UrlInterceptHandler, Plugin, PluginData, PluginList, UrlInterceptRegistry.</li>
+</ul>
+
+<h4>Camera</h4>
+<ul>
+<li>New parameters for color effect, scene mode, flash mode, focus mode, white balance, rotation, and other settings.</li>
+<li>New ZoomCallback interface to perform actions when the zoom level has changed.</li>
+</ul>
+
+<h4>Media</h4>
+<ul>
+<li>MediaScanner now generates thumbnails for all images when they are inserted into MediaStore.</li>
+<li>New Thumbnail API for retrieving image and video thumbnails on demand.</li>
+</ul>
+
+<h4>Other Framework</h4>
+<ul>
+<li>New system themes in android.R.style to easily display activities on top of the current system wallpaper or keep the previous activity visible in the background. </li>
+<li>New WallpaperManager API replaces and extends the wallpaper APIs that were previously in Context, to allow applications to request and set the system wallpaper.</li>
+<li>New Service APIs to help applications correctly handle Service life-cycle, in particular low memory situations where a Service may be killed while it is running.
+ <ul>
+ <li>Service.setForeground() has been deprecated and now effectively performs no operation. This is replaced with a new API, startForeground(), that helps (and requires) associating an ongoing notification with the foreground state.</li>
+ </ul>
+</li>
+<li>MotionEvent can now report simultaneous-touch information for devices that support it. Up to three pointers can be tracked simultaneously. </li>
+<li>KeyEvent has new key dispatching APIs, to help implement action-on-up and long press behavior, as well a new mechanism to cancel key presses (for virtual keys).</li>
+<li>WindowManager.LayoutParams has new constants that allow a window to wake up the screen when it is displayed and show the window even if the screen is locked. This allows applications to more cleanly implement things like alarm clocks that should wake the device.</li>
+<li>New Intent APIs that broadcast the docking state of the device and allow applications to launch special activities when the device is placed in a desktop or car dock.</li>
+</ul>
+
+<h3 id="api-diff">API differences report</h3>
+
+<p>For a detailed view of API changes in Android {@sdkPlatformVersion} (API Level {@sdkPlatformApiLevel}), as compared to
+the previous version, see the <a
+href="{@docRoot}sdk/api_diff/{@sdkPlatformApiLevel}/changes.html">API Differences Report</a>.</p>
+
diff --git a/docs/html/sdk/api_diff/5/changes.html b/docs/html/sdk/api_diff/5/changes.html
new file mode 100644
index 0000000..dc3f7cb
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes.html
@@ -0,0 +1,45 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<!-- on Wed Oct 21 21:05:31 PDT 2009 -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+API Differences between 4 and 5
+</TITLE>
+<link href="../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<FRAMESET COLS="242,**" frameborder="1" border="7" xframespacing="20" bordercolor="#e9e9e9">
+<frameset rows="164,**" frameborder="1" border="7" xframespacing="20" resizable="yes">
+ <FRAME SRC="changes/jdiff_topleftframe.html" SCROLLING="no" NAME="topleftframe" xframeborder="1" xborder="6" xframespacing="0">
+ <FRAME SRC="changes/alldiffs_index_all.html" SCROLLING="auto" NAME="bottomleftframe" xframeborder="1" xborder="1" xframespacing="0">
+ </FRAMESET>
+ <FRAME SRC="changes/changes-summary.html" SCROLLING="auto" NAME="rightframe" xframeborder="1" xborder="1" xframespacing="0">
+</FRAMESET>
+<NOFRAMES>
+<H2>
+Frame Alert
+</H2>
+
+<P>
+This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client.
+<BR>
+Link to <A HREF="changes/changes-summary.html" target="_top">Non-frame version.</A>
+</NOFRAMES>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/alldiffs_index_additions.html b/docs/html/sdk/api_diff/5/changes/alldiffs_index_additions.html
new file mode 100644
index 0000000..262429c
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/alldiffs_index_additions.html
@@ -0,0 +1,2301 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+All Additions Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for All Differences" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="alldiffs_index_all.html" xclass="hiddenlink">All Differences</a>
+ <br>
+<A HREF="alldiffs_index_removals.html" xclass="hiddenlink">Removals</A>
+ <br>
+<b>Additions</b>
+ <br>
+<A HREF="alldiffs_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<!-- Field _SYNC_ACCOUNT_TYPE -->
+<A NAME="_"></A>
+<br><b>underscore</b>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns._SYNC_ACCOUNT_TYPE" class="hiddenlink" target="rightframe">_SYNC_ACCOUNT_TYPE</A>
+</nobr><br>
+<!-- Constructor AbsoluteSizeSpan -->
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.text.style.AbsoluteSizeSpan.html#android.text.style.AbsoluteSizeSpan.ctor_added(int, boolean)" class="hiddenlink" target="rightframe"><b>AbsoluteSizeSpan</b>
+(<code>int, boolean</code>)</A></nobr> constructor<br>
+<!-- Class AbstractOwnableSynchronizer -->
+<A HREF="pkg_java.util.concurrent.locks.html#AbstractOwnableSynchronizer" class="hiddenlink" target="rightframe"><b>AbstractOwnableSynchronizer</b></A><br>
+<!-- Class AbstractThreadedSyncAdapter -->
+<A HREF="pkg_android.content.html#AbstractThreadedSyncAdapter" class="hiddenlink" target="rightframe"><b>AbstractThreadedSyncAdapter</b></A><br>
+<!-- Field ACCOUNT_MANAGER -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.ACCOUNT_MANAGER" class="hiddenlink" target="rightframe">ACCOUNT_MANAGER</A>
+</nobr><br>
+<!-- Field ACCOUNT_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.ACCOUNT_SERVICE" class="hiddenlink" target="rightframe">ACCOUNT_SERVICE</A>
+</nobr><br>
+<!-- Field accountPreferences -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.accountPreferences" class="hiddenlink" target="rightframe">accountPreferences</A>
+</nobr><br>
+<!-- Field accountType -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.accountType" class="hiddenlink" target="rightframe">accountType</A>
+</nobr><br>
+<!-- Method acquireContentProviderClient -->
+<i>acquireContentProviderClient</i><br>
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.acquireContentProviderClient_added(android.net.Uri)" class="hiddenlink" target="rightframe">type <b>
+(<code>Uri</code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+<!-- Method acquireContentProviderClient -->
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.acquireContentProviderClient_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+<!-- Field ACTION_ACCESSIBILITY_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_ACCESSIBILITY_SETTINGS" class="hiddenlink" target="rightframe">ACTION_ACCESSIBILITY_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_DOCK_EVENT -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_DOCK_EVENT" class="hiddenlink" target="rightframe">ACTION_DOCK_EVENT</A>
+</nobr><br>
+<!-- Field ACTION_MASK -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_MASK" class="hiddenlink" target="rightframe">ACTION_MASK</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_1_DOWN -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_1_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_1_DOWN</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_1_UP -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_1_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_1_UP</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_2_DOWN -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_2_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_2_DOWN</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_2_UP -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_2_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_2_UP</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_3_DOWN -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_3_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_3_DOWN</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_3_UP -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_3_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_3_UP</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_DOWN -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_DOWN</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_ID_MASK -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_ID_MASK" class="hiddenlink" target="rightframe">ACTION_POINTER_ID_MASK</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_ID_SHIFT -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_ID_SHIFT" class="hiddenlink" target="rightframe">ACTION_POINTER_ID_SHIFT</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_UP -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_UP</A>
+</nobr><br>
+<!-- Field ACTION_PRIVACY_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_PRIVACY_SETTINGS" class="hiddenlink" target="rightframe">ACTION_PRIVACY_SETTINGS</A>
+</nobr><br>
+<!-- Method addNmeaListener -->
+<nobr><A HREF="android.location.LocationManager.html#android.location.LocationManager.addNmeaListener_added(android.location.GpsStatus.NmeaListener)" class="hiddenlink" target="rightframe"><b>addNmeaListener</b>
+(<code>NmeaListener</code>)</A></nobr><br>
+<!-- Method addStatusChangeListener -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.addStatusChangeListener_added(int, android.content.SyncStatusObserver)" class="hiddenlink" target="rightframe"><b>addStatusChangeListener</b>
+(<code>int, SyncStatusObserver</code>)</A></nobr><br>
+<!-- Field ALARM_ALERT -->
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.ALARM_ALERT" class="hiddenlink" target="rightframe">ALARM_ALERT</A>
+</nobr><br>
+<!-- Package android.accounts -->
+<A HREF="changes-summary.html#android.accounts" class="hiddenlink" target="rightframe"><b>android.accounts</b></A><br>
+<!-- Package android.bluetooth -->
+<A HREF="changes-summary.html#android.bluetooth" class="hiddenlink" target="rightframe"><b>android.bluetooth</b></A><br>
+<!-- Package android.telephony.cdma -->
+<A HREF="changes-summary.html#android.telephony.cdma" class="hiddenlink" target="rightframe"><b>android.telephony.cdma</b></A><br>
+<!-- Field Animation_InputMethod -->
+<nobr><A HREF="android.R.style.html#android.R.style.Animation_InputMethod" class="hiddenlink" target="rightframe">Animation_InputMethod</A>
+</nobr><br>
+<!-- Field ANTIBANDING_50HZ -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_50HZ" class="hiddenlink" target="rightframe">ANTIBANDING_50HZ</A>
+</nobr><br>
+<!-- Field ANTIBANDING_60HZ -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_60HZ" class="hiddenlink" target="rightframe">ANTIBANDING_60HZ</A>
+</nobr><br>
+<!-- Field ANTIBANDING_AUTO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_AUTO" class="hiddenlink" target="rightframe">ANTIBANDING_AUTO</A>
+</nobr><br>
+<!-- Field ANTIBANDING_OFF -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_OFF" class="hiddenlink" target="rightframe">ANTIBANDING_OFF</A>
+</nobr><br>
+<!-- Method applyBatch -->
+<i>applyBatch</i><br>
+ <nobr><A HREF="android.content.ContentProvider.html#android.content.ContentProvider.applyBatch_added(java.util.ArrayList<android.content.ContentProviderOperation>)" class="hiddenlink" target="rightframe">type <b>
+(<code>ArrayList<ContentProviderOperation></code>)</b> in android.content.ContentProvider
+</A></nobr><br>
+<!-- Method applyBatch -->
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.applyBatch_added(java.lang.String, java.util.ArrayList<android.content.ContentProviderOperation>)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, ArrayList<ContentProviderOperation></code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+<!-- Field AUTHENTICATE_ACCOUNTS -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.AUTHENTICATE_ACCOUNTS" class="hiddenlink" target="rightframe">AUTHENTICATE_ACCOUNTS</A>
+</nobr><br>
+<!-- Method awakenScrollBars -->
+<i>awakenScrollBars</i><br>
+ <nobr><A HREF="android.view.View.html#android.view.View.awakenScrollBars_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.View
+</A></nobr><br>
+<!-- Method awakenScrollBars -->
+ <nobr><A HREF="android.view.View.html#android.view.View.awakenScrollBars_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.view.View
+</A></nobr><br>
+<!-- Method awakenScrollBars -->
+ <nobr><A HREF="android.view.View.html#android.view.View.awakenScrollBars_added(int, boolean)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, boolean</code>)</b> in android.view.View
+</A></nobr><br>
+<!-- Method beginTransactionWithListener -->
+<A NAME="B"></A>
+<br><font size="+2">B</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.beginTransactionWithListener_added(android.database.sqlite.SQLiteTransactionListener)" class="hiddenlink" target="rightframe"><b>beginTransactionWithListener</b>
+(<code>SQLiteTransactionListener</code>)</A></nobr><br>
+<!-- Constructor BitmapDrawable -->
+<i>BitmapDrawable</i><br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources)" class="hiddenlink" target="rightframe"><b>BitmapDrawable</b>
+(<code>Resources</code>)</A></nobr> constructor<br>
+<!-- Constructor BitmapDrawable -->
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources, java.lang.String)" class="hiddenlink" target="rightframe"><b>BitmapDrawable</b>
+(<code>Resources, String</code>)</A></nobr> constructor<br>
+<!-- Constructor BitmapDrawable -->
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources, java.io.InputStream)" class="hiddenlink" target="rightframe"><b>BitmapDrawable</b>
+(<code>Resources, InputStream</code>)</A></nobr> constructor<br>
+<!-- Method cancel -->
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.app.NotificationManager.html#android.app.NotificationManager.cancel_added(java.lang.String, int)" class="hiddenlink" target="rightframe"><b>cancel</b>
+(<code>String, int</code>)</A></nobr><br>
+<!-- Method cancelAutoFocus -->
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.cancelAutoFocus_added()" class="hiddenlink" target="rightframe"><b>cancelAutoFocus</b>
+()</A></nobr><br>
+<!-- Method cancelSync -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.cancelSync_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>cancelSync</b>
+(<code>Account, String</code>)</A></nobr><br>
+<!-- Method cancelThumbnailRequest -->
+<nobr><A HREF="android.provider.MediaStore.Images.Thumbnails.html#android.provider.MediaStore.Images.Thumbnails.cancelThumbnailRequest_added(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe"><b>cancelThumbnailRequest</b>
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<!-- Method canPause -->
+<i>canPause</i><br>
+ <nobr><A HREF="android.widget.MediaController.MediaPlayerControl.html#android.widget.MediaController.MediaPlayerControl.canPause_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.MediaController.MediaPlayerControl
+</A></nobr><br>
+<!-- Method canPause -->
+ <nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.canPause_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.VideoView
+</A></nobr><br>
+<!-- Method canSeekBackward -->
+<i>canSeekBackward</i><br>
+ <nobr><A HREF="android.widget.MediaController.MediaPlayerControl.html#android.widget.MediaController.MediaPlayerControl.canSeekBackward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.MediaController.MediaPlayerControl
+</A></nobr><br>
+<!-- Method canSeekBackward -->
+ <nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.canSeekBackward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.VideoView
+</A></nobr><br>
+<!-- Method canSeekForward -->
+<i>canSeekForward</i><br>
+ <nobr><A HREF="android.widget.MediaController.MediaPlayerControl.html#android.widget.MediaController.MediaPlayerControl.canSeekForward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.MediaController.MediaPlayerControl
+</A></nobr><br>
+<!-- Method canSeekForward -->
+ <nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.canSeekForward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.VideoView
+</A></nobr><br>
+<!-- Field CATEGORY_CAR_DOCK -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_CAR_DOCK" class="hiddenlink" target="rightframe">CATEGORY_CAR_DOCK</A>
+</nobr><br>
+<!-- Field CATEGORY_DESK_DOCK -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_DESK_DOCK" class="hiddenlink" target="rightframe">CATEGORY_DESK_DOCK</A>
+</nobr><br>
+<!-- Method changeTimeRepeat -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.changeTimeRepeat_added(android.view.KeyEvent, long, int, int)" class="hiddenlink" target="rightframe"><b>changeTimeRepeat</b>
+(<code>KeyEvent, long, int, int</code>)</A></nobr><br>
+<!-- Field CHANNEL_IN_BACK -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_BACK" class="hiddenlink" target="rightframe">CHANNEL_IN_BACK</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_BACK_PROCESSED -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_BACK_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_BACK_PROCESSED</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_DEFAULT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_DEFAULT" class="hiddenlink" target="rightframe">CHANNEL_IN_DEFAULT</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_FRONT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_FRONT" class="hiddenlink" target="rightframe">CHANNEL_IN_FRONT</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_FRONT_PROCESSED -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_FRONT_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_FRONT_PROCESSED</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_LEFT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_LEFT" class="hiddenlink" target="rightframe">CHANNEL_IN_LEFT</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_LEFT_PROCESSED -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_LEFT_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_LEFT_PROCESSED</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_MONO -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_MONO" class="hiddenlink" target="rightframe">CHANNEL_IN_MONO</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_PRESSURE -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_PRESSURE" class="hiddenlink" target="rightframe">CHANNEL_IN_PRESSURE</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_RIGHT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_IN_RIGHT</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_RIGHT_PROCESSED -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_RIGHT_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_RIGHT_PROCESSED</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_STEREO -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_STEREO" class="hiddenlink" target="rightframe">CHANNEL_IN_STEREO</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_VOICE_DNLINK -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_VOICE_DNLINK" class="hiddenlink" target="rightframe">CHANNEL_IN_VOICE_DNLINK</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_VOICE_UPLINK -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_VOICE_UPLINK" class="hiddenlink" target="rightframe">CHANNEL_IN_VOICE_UPLINK</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_X_AXIS -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_X_AXIS" class="hiddenlink" target="rightframe">CHANNEL_IN_X_AXIS</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_Y_AXIS -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_Y_AXIS" class="hiddenlink" target="rightframe">CHANNEL_IN_Y_AXIS</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_Z_AXIS -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_Z_AXIS" class="hiddenlink" target="rightframe">CHANNEL_IN_Z_AXIS</A>
+</nobr><br>
+<!-- Field CHANNEL_INVALID -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_INVALID" class="hiddenlink" target="rightframe">CHANNEL_INVALID</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_5POINT1 -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_5POINT1" class="hiddenlink" target="rightframe">CHANNEL_OUT_5POINT1</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_7POINT1 -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_7POINT1" class="hiddenlink" target="rightframe">CHANNEL_OUT_7POINT1</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_BACK_CENTER -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_BACK_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_BACK_CENTER</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_BACK_LEFT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_BACK_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_BACK_LEFT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_BACK_RIGHT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_BACK_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_BACK_RIGHT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_DEFAULT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_DEFAULT" class="hiddenlink" target="rightframe">CHANNEL_OUT_DEFAULT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_FRONT_CENTER -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_CENTER</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_FRONT_LEFT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_LEFT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_FRONT_LEFT_OF_CENTER -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_LEFT_OF_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_LEFT_OF_CENTER</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_FRONT_RIGHT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_RIGHT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_FRONT_RIGHT_OF_CENTER -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_RIGHT_OF_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_RIGHT_OF_CENTER</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_LOW_FREQUENCY -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_LOW_FREQUENCY" class="hiddenlink" target="rightframe">CHANNEL_OUT_LOW_FREQUENCY</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_MONO -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_MONO" class="hiddenlink" target="rightframe">CHANNEL_OUT_MONO</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_QUAD -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_QUAD" class="hiddenlink" target="rightframe">CHANNEL_OUT_QUAD</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_STEREO -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_STEREO" class="hiddenlink" target="rightframe">CHANNEL_OUT_STEREO</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_SURROUND -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SURROUND" class="hiddenlink" target="rightframe">CHANNEL_OUT_SURROUND</A>
+</nobr><br>
+<!-- Method checkSignatures -->
+<i>checkSignatures</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.checkSignatures_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method checkSignatures -->
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.checkSignatures_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Field clientLabel -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.clientLabel" class="hiddenlink" target="rightframe">clientLabel</A>
+</nobr><br>
+<!-- Field clientPackage -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.clientPackage" class="hiddenlink" target="rightframe">clientPackage</A>
+</nobr><br>
+<!-- Field colorBackgroundCacheHint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorBackgroundCacheHint" class="hiddenlink" target="rightframe">colorBackgroundCacheHint</A>
+</nobr><br>
+<!-- Method compare -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.compare_added(android.content.Context, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>compare</b>
+(<code>Context, String, String</code>)</A></nobr><br>
+<!-- Class ContactsContract -->
+<A HREF="pkg_android.provider.html#ContactsContract" class="hiddenlink" target="rightframe"><b>ContactsContract</b></A><br>
+<!-- Class ContactsContract.AggregationExceptions -->
+<A HREF="pkg_android.provider.html#ContactsContract.AggregationExceptions" class="hiddenlink" target="rightframe"><b>ContactsContract.AggregationExceptions</b></A><br>
+<!-- Class ContactsContract.BaseSyncColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.BaseSyncColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.BaseSyncColumns</i></b></A><br>
+<!-- Class ContactsContract.CommonDataKinds -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.BaseTypes -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.BaseTypes" class="hiddenlink" target="rightframe"><b><i>ContactsContract.CommonDataKinds.BaseTypes</i></b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.CommonColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.CommonColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.CommonDataKinds.CommonColumns</i></b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Email -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Email" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Email</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Event -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Event" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Event</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.GroupMembership -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.GroupMembership" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.GroupMembership</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Im -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Im" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Im</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Nickname -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Nickname" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Nickname</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Note -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Note" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Note</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Organization -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Organization" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Organization</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Phone -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Phone" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Phone</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Photo -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Photo" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Photo</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Relation -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Relation" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Relation</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.StructuredName -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.StructuredName" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.StructuredName</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.StructuredPostal -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.StructuredPostal" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.StructuredPostal</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Website -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Website" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Website</b></A><br>
+<!-- Class ContactsContract.ContactOptionsColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.ContactOptionsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.ContactOptionsColumns</i></b></A><br>
+<!-- Class ContactsContract.Contacts -->
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts</b></A><br>
+<!-- Class ContactsContract.Contacts.AggregationSuggestions -->
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts.AggregationSuggestions" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts.AggregationSuggestions</b></A><br>
+<!-- Class ContactsContract.Contacts.Data -->
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts.Data" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts.Data</b></A><br>
+<!-- Class ContactsContract.Contacts.Photo -->
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts.Photo" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts.Photo</b></A><br>
+<!-- Class ContactsContract.ContactsColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.ContactsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.ContactsColumns</i></b></A><br>
+<!-- Class ContactsContract.ContactStatusColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.ContactStatusColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.ContactStatusColumns</i></b></A><br>
+<!-- Class ContactsContract.Data -->
+<A HREF="pkg_android.provider.html#ContactsContract.Data" class="hiddenlink" target="rightframe"><b>ContactsContract.Data</b></A><br>
+<!-- Class ContactsContract.DataColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.DataColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.DataColumns</i></b></A><br>
+<!-- Class ContactsContract.DataColumnsWithJoins -->
+<A HREF="pkg_android.provider.html#ContactsContract.DataColumnsWithJoins" class="hiddenlink" target="rightframe"><b><i>ContactsContract.DataColumnsWithJoins</i></b></A><br>
+<!-- Class ContactsContract.Groups -->
+<A HREF="pkg_android.provider.html#ContactsContract.Groups" class="hiddenlink" target="rightframe"><b>ContactsContract.Groups</b></A><br>
+<!-- Class ContactsContract.GroupsColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.GroupsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.GroupsColumns</i></b></A><br>
+<!-- Class ContactsContract.Intents -->
+<A HREF="pkg_android.provider.html#ContactsContract.Intents" class="hiddenlink" target="rightframe"><b>ContactsContract.Intents</b></A><br>
+<!-- Class ContactsContract.Intents.Insert -->
+<A HREF="pkg_android.provider.html#ContactsContract.Intents.Insert" class="hiddenlink" target="rightframe"><b>ContactsContract.Intents.Insert</b></A><br>
+<!-- Class ContactsContract.PhoneLookup -->
+<A HREF="pkg_android.provider.html#ContactsContract.PhoneLookup" class="hiddenlink" target="rightframe"><b>ContactsContract.PhoneLookup</b></A><br>
+<!-- Class ContactsContract.PhoneLookupColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.PhoneLookupColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.PhoneLookupColumns</i></b></A><br>
+<!-- Class ContactsContract.Presence -->
+<A HREF="pkg_android.provider.html#ContactsContract.Presence" class="hiddenlink" target="rightframe"><b>ContactsContract.Presence</b></A><br>
+<!-- Class ContactsContract.PresenceColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.PresenceColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.PresenceColumns</i></b></A><br>
+<!-- Class ContactsContract.QuickContact -->
+<A HREF="pkg_android.provider.html#ContactsContract.QuickContact" class="hiddenlink" target="rightframe"><b>ContactsContract.QuickContact</b></A><br>
+<!-- Class ContactsContract.RawContacts -->
+<A HREF="pkg_android.provider.html#ContactsContract.RawContacts" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContacts</b></A><br>
+<!-- Class ContactsContract.RawContacts.Data -->
+<A HREF="pkg_android.provider.html#ContactsContract.RawContacts.Data" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContacts.Data</b></A><br>
+<!-- Class ContactsContract.RawContacts.Entity -->
+<A HREF="pkg_android.provider.html#ContactsContract.RawContacts.Entity" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContacts.Entity</b></A><br>
+<!-- Class ContactsContract.RawContactsColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.RawContactsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.RawContactsColumns</i></b></A><br>
+<!-- Class ContactsContract.RawContactsEntity -->
+<A HREF="pkg_android.provider.html#ContactsContract.RawContactsEntity" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContactsEntity</b></A><br>
+<!-- Class ContactsContract.Settings -->
+<A HREF="pkg_android.provider.html#ContactsContract.Settings" class="hiddenlink" target="rightframe"><b>ContactsContract.Settings</b></A><br>
+<!-- Class ContactsContract.SettingsColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.SettingsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.SettingsColumns</i></b></A><br>
+<!-- Class ContactsContract.StatusColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.StatusColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.StatusColumns</i></b></A><br>
+<!-- Class ContactsContract.StatusUpdates -->
+<A HREF="pkg_android.provider.html#ContactsContract.StatusUpdates" class="hiddenlink" target="rightframe"><b>ContactsContract.StatusUpdates</b></A><br>
+<!-- Class ContactsContract.SyncColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.SyncColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.SyncColumns</i></b></A><br>
+<!-- Class ContactsContract.SyncState -->
+<A HREF="pkg_android.provider.html#ContactsContract.SyncState" class="hiddenlink" target="rightframe"><b>ContactsContract.SyncState</b></A><br>
+<!-- Method contains -->
+<nobr><A HREF="java.util.concurrent.BlockingQueue.html#java.util.concurrent.BlockingQueue.contains_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>contains</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Field contentAuthority -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentAuthority" class="hiddenlink" target="rightframe">contentAuthority</A>
+</nobr><br>
+<!-- Class ContentProviderClient -->
+<A HREF="pkg_android.content.html#ContentProviderClient" class="hiddenlink" target="rightframe"><b>ContentProviderClient</b></A><br>
+<!-- Class ContentProviderOperation -->
+<A HREF="pkg_android.content.html#ContentProviderOperation" class="hiddenlink" target="rightframe"><b>ContentProviderOperation</b></A><br>
+<!-- Class ContentProviderOperation.Builder -->
+<A HREF="pkg_android.content.html#ContentProviderOperation.Builder" class="hiddenlink" target="rightframe"><b>ContentProviderOperation.Builder</b></A><br>
+<!-- Class ContentProviderResult -->
+<A HREF="pkg_android.content.html#ContentProviderResult" class="hiddenlink" target="rightframe"><b>ContentProviderResult</b></A><br>
+<!-- Method createFromResourceStream -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromResourceStream_added(android.content.res.Resources, android.util.TypedValue, java.io.InputStream, java.lang.String, android.graphics.BitmapFactory.Options)" class="hiddenlink" target="rightframe"><b>createFromResourceStream</b>
+(<code>Resources, TypedValue, InputStream, String, Options</code>)</A></nobr><br>
+<!-- Field CREATOR -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.CREATOR" class="hiddenlink" target="rightframe">CREATOR</A>
+</nobr><br>
+<!-- Field DATA_ACTIVITY_DORMANT -->
+<A NAME="D"></A>
+<br><font size="+2">D</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.DATA_ACTIVITY_DORMANT" class="hiddenlink" target="rightframe">DATA_ACTIVITY_DORMANT</A>
+</nobr><br>
+<!-- Field DEFAULT_ALARM_ALERT_URI -->
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.DEFAULT_ALARM_ALERT_URI" class="hiddenlink" target="rightframe">DEFAULT_ALARM_ALERT_URI</A>
+</nobr><br>
+<!-- Field density -->
+<nobr><A HREF="android.text.TextPaint.html#android.text.TextPaint.density" class="hiddenlink" target="rightframe">density</A>
+</nobr><br>
+<!-- Method describeContents -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.describeContents_added()" class="hiddenlink" target="rightframe"><b>describeContents</b>
+()</A></nobr><br>
+<!-- Field detachWallpaper -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.detachWallpaper" class="hiddenlink" target="rightframe">detachWallpaper</A>
+</nobr><br>
+<!-- Field detailColumn -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.detailColumn" class="hiddenlink" target="rightframe">detailColumn</A>
+</nobr><br>
+<!-- Field detailSocialSummary -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.detailSocialSummary" class="hiddenlink" target="rightframe">detailSocialSummary</A>
+</nobr><br>
+<!-- Method dispatch -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.dispatch_added(android.view.KeyEvent.Callback, android.view.KeyEvent.DispatcherState, java.lang.Object)" class="hiddenlink" target="rightframe"><b>dispatch</b>
+(<code>Callback, DispatcherState, Object</code>)</A></nobr><br>
+<!-- Field dropDownHorizontalOffset -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.dropDownHorizontalOffset" class="hiddenlink" target="rightframe">dropDownHorizontalOffset</A>
+</nobr><br>
+<!-- Field dropDownVerticalOffset -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.dropDownVerticalOffset" class="hiddenlink" target="rightframe">dropDownVerticalOffset</A>
+</nobr><br>
+<!-- Method dump -->
+<nobr><A HREF="android.content.pm.ServiceInfo.html#android.content.pm.ServiceInfo.dump_added(android.util.Printer, java.lang.String)" class="hiddenlink" target="rightframe"><b>dump</b>
+(<code>Printer, String</code>)</A></nobr><br>
+<!-- Field ECLAIR -->
+<A NAME="E"></A>
+<br><font size="+2">E</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.ECLAIR" class="hiddenlink" target="rightframe">ECLAIR</A>
+</nobr><br>
+<!-- Field EFFECT_AQUA -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_AQUA" class="hiddenlink" target="rightframe">EFFECT_AQUA</A>
+</nobr><br>
+<!-- Field EFFECT_BLACKBOARD -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_BLACKBOARD" class="hiddenlink" target="rightframe">EFFECT_BLACKBOARD</A>
+</nobr><br>
+<!-- Field EFFECT_MONO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_MONO" class="hiddenlink" target="rightframe">EFFECT_MONO</A>
+</nobr><br>
+<!-- Field EFFECT_NEGATIVE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_NEGATIVE" class="hiddenlink" target="rightframe">EFFECT_NEGATIVE</A>
+</nobr><br>
+<!-- Field EFFECT_NONE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_NONE" class="hiddenlink" target="rightframe">EFFECT_NONE</A>
+</nobr><br>
+<!-- Field EFFECT_POSTERIZE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_POSTERIZE" class="hiddenlink" target="rightframe">EFFECT_POSTERIZE</A>
+</nobr><br>
+<!-- Field EFFECT_SEPIA -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_SEPIA" class="hiddenlink" target="rightframe">EFFECT_SEPIA</A>
+</nobr><br>
+<!-- Field EFFECT_SOLARIZE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_SOLARIZE" class="hiddenlink" target="rightframe">EFFECT_SOLARIZE</A>
+</nobr><br>
+<!-- Field EFFECT_WHITEBOARD -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_WHITEBOARD" class="hiddenlink" target="rightframe">EFFECT_WHITEBOARD</A>
+</nobr><br>
+<!-- Field ERROR_AUTHENTICATION -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_AUTHENTICATION" class="hiddenlink" target="rightframe">ERROR_AUTHENTICATION</A>
+</nobr><br>
+<!-- Field ERROR_BAD_URL -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_BAD_URL" class="hiddenlink" target="rightframe">ERROR_BAD_URL</A>
+</nobr><br>
+<!-- Field ERROR_CONNECT -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_CONNECT" class="hiddenlink" target="rightframe">ERROR_CONNECT</A>
+</nobr><br>
+<!-- Field ERROR_FAILED_SSL_HANDSHAKE -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_FAILED_SSL_HANDSHAKE" class="hiddenlink" target="rightframe">ERROR_FAILED_SSL_HANDSHAKE</A>
+</nobr><br>
+<!-- Field ERROR_FILE -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_FILE" class="hiddenlink" target="rightframe">ERROR_FILE</A>
+</nobr><br>
+<!-- Field ERROR_FILE_NOT_FOUND -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_FILE_NOT_FOUND" class="hiddenlink" target="rightframe">ERROR_FILE_NOT_FOUND</A>
+</nobr><br>
+<!-- Field ERROR_HOST_LOOKUP -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_HOST_LOOKUP" class="hiddenlink" target="rightframe">ERROR_HOST_LOOKUP</A>
+</nobr><br>
+<!-- Field ERROR_IO -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_IO" class="hiddenlink" target="rightframe">ERROR_IO</A>
+</nobr><br>
+<!-- Field ERROR_PROXY_AUTHENTICATION -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_PROXY_AUTHENTICATION" class="hiddenlink" target="rightframe">ERROR_PROXY_AUTHENTICATION</A>
+</nobr><br>
+<!-- Field ERROR_REDIRECT_LOOP -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_REDIRECT_LOOP" class="hiddenlink" target="rightframe">ERROR_REDIRECT_LOOP</A>
+</nobr><br>
+<!-- Field ERROR_TIMEOUT -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_TIMEOUT" class="hiddenlink" target="rightframe">ERROR_TIMEOUT</A>
+</nobr><br>
+<!-- Field ERROR_TOO_MANY_REQUESTS -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_TOO_MANY_REQUESTS" class="hiddenlink" target="rightframe">ERROR_TOO_MANY_REQUESTS</A>
+</nobr><br>
+<!-- Field ERROR_UNKNOWN -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_UNKNOWN" class="hiddenlink" target="rightframe">ERROR_UNKNOWN</A>
+</nobr><br>
+<!-- Field ERROR_UNSUPPORTED_AUTH_SCHEME -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_UNSUPPORTED_AUTH_SCHEME" class="hiddenlink" target="rightframe">ERROR_UNSUPPORTED_AUTH_SCHEME</A>
+</nobr><br>
+<!-- Field ERROR_UNSUPPORTED_SCHEME -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_UNSUPPORTED_SCHEME" class="hiddenlink" target="rightframe">ERROR_UNSUPPORTED_SCHEME</A>
+</nobr><br>
+<!-- Class ExifInterface -->
+<A HREF="pkg_android.media.html#ExifInterface" class="hiddenlink" target="rightframe"><b>ExifInterface</b></A><br>
+<!-- Field EXTRA_CHANGED_COMPONENT_NAME -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_CHANGED_COMPONENT_NAME" class="hiddenlink" target="rightframe">EXTRA_CHANGED_COMPONENT_NAME</A>
+</nobr><br>
+<!-- Field EXTRA_DOCK_STATE -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE</A>
+</nobr><br>
+<!-- Field EXTRA_DOCK_STATE_CAR -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE_CAR" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE_CAR</A>
+</nobr><br>
+<!-- Field EXTRA_DOCK_STATE_DESK -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE_DESK" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE_DESK</A>
+</nobr><br>
+<!-- Field EXTRA_DOCK_STATE_UNDOCKED -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE_UNDOCKED" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE_UNDOCKED</A>
+</nobr><br>
+<!-- Field EXTRA_HEALTH -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_HEALTH" class="hiddenlink" target="rightframe">EXTRA_HEALTH</A>
+</nobr><br>
+<!-- Field EXTRA_ICON_SMALL -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_ICON_SMALL" class="hiddenlink" target="rightframe">EXTRA_ICON_SMALL</A>
+</nobr><br>
+<!-- Field EXTRA_INITIAL_INTENTS -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_INITIAL_INTENTS" class="hiddenlink" target="rightframe">EXTRA_INITIAL_INTENTS</A>
+</nobr><br>
+<!-- Field EXTRA_LEVEL -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_LEVEL" class="hiddenlink" target="rightframe">EXTRA_LEVEL</A>
+</nobr><br>
+<!-- Field EXTRA_PLUGGED -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_PLUGGED" class="hiddenlink" target="rightframe">EXTRA_PLUGGED</A>
+</nobr><br>
+<!-- Field EXTRA_PRESENT -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_PRESENT" class="hiddenlink" target="rightframe">EXTRA_PRESENT</A>
+</nobr><br>
+<!-- Field EXTRA_REMOTE_INTENT_TOKEN -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_REMOTE_INTENT_TOKEN" class="hiddenlink" target="rightframe">EXTRA_REMOTE_INTENT_TOKEN</A>
+</nobr><br>
+<!-- Field EXTRA_SCALE -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_SCALE" class="hiddenlink" target="rightframe">EXTRA_SCALE</A>
+</nobr><br>
+<!-- Field EXTRA_STATUS -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_STATUS" class="hiddenlink" target="rightframe">EXTRA_STATUS</A>
+</nobr><br>
+<!-- Field EXTRA_TECHNOLOGY -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_TECHNOLOGY" class="hiddenlink" target="rightframe">EXTRA_TECHNOLOGY</A>
+</nobr><br>
+<!-- Field EXTRA_TEMPERATURE -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_TEMPERATURE" class="hiddenlink" target="rightframe">EXTRA_TEMPERATURE</A>
+</nobr><br>
+<!-- Field EXTRA_VOLTAGE -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_VOLTAGE" class="hiddenlink" target="rightframe">EXTRA_VOLTAGE</A>
+</nobr><br>
+<!-- Field fadeScrollbars -->
+<A NAME="F"></A>
+<br><font size="+2">F</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.R.attr.html#android.R.attr.fadeScrollbars" class="hiddenlink" target="rightframe">fadeScrollbars</A>
+</nobr><br>
+<!-- Class FeatureInfo -->
+<A HREF="pkg_android.content.pm.html#FeatureInfo" class="hiddenlink" target="rightframe"><b>FeatureInfo</b></A><br>
+<!-- Method findPointerIndex -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.findPointerIndex_added(int)" class="hiddenlink" target="rightframe"><b>findPointerIndex</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field finishOnCloseSystemDialogs -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.finishOnCloseSystemDialogs" class="hiddenlink" target="rightframe">finishOnCloseSystemDialogs</A>
+</nobr><br>
+<!-- Field FLAG_ACTIVITY_NO_ANIMATION -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_NO_ANIMATION" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_NO_ANIMATION</A>
+</nobr><br>
+<!-- Field FLAG_CANCELED -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_CANCELED" class="hiddenlink" target="rightframe">FLAG_CANCELED</A>
+</nobr><br>
+<!-- Field FLAG_CANCELED_LONG_PRESS -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_CANCELED_LONG_PRESS" class="hiddenlink" target="rightframe">FLAG_CANCELED_LONG_PRESS</A>
+</nobr><br>
+<!-- Field FLAG_DISMISS_KEYGUARD -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD" class="hiddenlink" target="rightframe">FLAG_DISMISS_KEYGUARD</A>
+</nobr><br>
+<!-- Field FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS" class="hiddenlink" target="rightframe">FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS</A>
+</nobr><br>
+<!-- Field FLAG_FOREGROUND -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_FOREGROUND" class="hiddenlink" target="rightframe">FLAG_FOREGROUND</A>
+</nobr><br>
+<!-- Field FLAG_FOREGROUND_SERVICE -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.FLAG_FOREGROUND_SERVICE" class="hiddenlink" target="rightframe">FLAG_FOREGROUND_SERVICE</A>
+</nobr><br>
+<!-- Field FLAG_LONG_PRESS -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_LONG_PRESS" class="hiddenlink" target="rightframe">FLAG_LONG_PRESS</A>
+</nobr><br>
+<!-- Field FLAG_PERSISTENT_PROCESS -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_PERSISTENT_PROCESS" class="hiddenlink" target="rightframe">FLAG_PERSISTENT_PROCESS</A>
+</nobr><br>
+<!-- Field FLAG_SHOW_WALLPAPER -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER" class="hiddenlink" target="rightframe">FLAG_SHOW_WALLPAPER</A>
+</nobr><br>
+<!-- Field FLAG_SHOW_WHEN_LOCKED -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED" class="hiddenlink" target="rightframe">FLAG_SHOW_WHEN_LOCKED</A>
+</nobr><br>
+<!-- Field FLAG_STARTED -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_STARTED" class="hiddenlink" target="rightframe">FLAG_STARTED</A>
+</nobr><br>
+<!-- Field FLAG_SYSTEM_PROCESS -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_SYSTEM_PROCESS" class="hiddenlink" target="rightframe">FLAG_SYSTEM_PROCESS</A>
+</nobr><br>
+<!-- Field FLAG_TRACKING -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_TRACKING" class="hiddenlink" target="rightframe">FLAG_TRACKING</A>
+</nobr><br>
+<!-- Field FLAG_TURN_SCREEN_ON -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON" class="hiddenlink" target="rightframe">FLAG_TURN_SCREEN_ON</A>
+</nobr><br>
+<!-- Field FLAG_VIRTUAL_HARD_KEY -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_VIRTUAL_HARD_KEY" class="hiddenlink" target="rightframe">FLAG_VIRTUAL_HARD_KEY</A>
+</nobr><br>
+<!-- Field flags -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.flags" class="hiddenlink" target="rightframe">flags</A>
+</nobr><br>
+<!-- Field FLASH_MODE_AUTO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_AUTO" class="hiddenlink" target="rightframe">FLASH_MODE_AUTO</A>
+</nobr><br>
+<!-- Field FLASH_MODE_OFF -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_OFF" class="hiddenlink" target="rightframe">FLASH_MODE_OFF</A>
+</nobr><br>
+<!-- Field FLASH_MODE_ON -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_ON" class="hiddenlink" target="rightframe">FLASH_MODE_ON</A>
+</nobr><br>
+<!-- Field FLASH_MODE_RED_EYE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_RED_EYE" class="hiddenlink" target="rightframe">FLASH_MODE_RED_EYE</A>
+</nobr><br>
+<!-- Field FLASH_MODE_TORCH -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_TORCH" class="hiddenlink" target="rightframe">FLASH_MODE_TORCH</A>
+</nobr><br>
+<!-- Field FOCUS_MODE_AUTO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_AUTO" class="hiddenlink" target="rightframe">FOCUS_MODE_AUTO</A>
+</nobr><br>
+<!-- Field FOCUS_MODE_FIXED -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_FIXED" class="hiddenlink" target="rightframe">FOCUS_MODE_FIXED</A>
+</nobr><br>
+<!-- Field FOCUS_MODE_INFINITY -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_INFINITY" class="hiddenlink" target="rightframe">FOCUS_MODE_INFINITY</A>
+</nobr><br>
+<!-- Field FOCUS_MODE_MACRO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_MACRO" class="hiddenlink" target="rightframe">FOCUS_MODE_MACRO</A>
+</nobr><br>
+<!-- Method formatDateRange -->
+<nobr><A HREF="android.text.format.DateUtils.html#android.text.format.DateUtils.formatDateRange_added(android.content.Context, java.util.Formatter, long, long, int)" class="hiddenlink" target="rightframe"><b>formatDateRange</b>
+(<code>Context, Formatter, long, long, int</code>)</A></nobr><br>
+<!-- Method formatShortFileSize -->
+<nobr><A HREF="android.text.format.Formatter.html#android.text.format.Formatter.formatShortFileSize_added(android.content.Context, long)" class="hiddenlink" target="rightframe"><b>formatShortFileSize</b>
+(<code>Context, long</code>)</A></nobr><br>
+<!-- Class GeolocationPermissions -->
+<A NAME="G"></A>
+<br><font size="+2">G</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.webkit.html#GeolocationPermissions" class="hiddenlink" target="rightframe"><b>GeolocationPermissions</b></A><br>
+<!-- Class GeolocationPermissions.Callback -->
+<A HREF="pkg_android.webkit.html#GeolocationPermissions.Callback" class="hiddenlink" target="rightframe"><b><i>GeolocationPermissions.Callback</i></b></A><br>
+<!-- Method getAntibanding -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getAntibanding_added()" class="hiddenlink" target="rightframe"><b>getAntibanding</b>
+()</A></nobr><br>
+<!-- Method getColorEffect -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getColorEffect_added()" class="hiddenlink" target="rightframe"><b>getColorEffect</b>
+()</A></nobr><br>
+<!-- Method getDatabaseEnabled -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getDatabaseEnabled_added()" class="hiddenlink" target="rightframe"><b>getDatabaseEnabled</b>
+()</A></nobr><br>
+<!-- Method getDatabasePath -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getDatabasePath_added()" class="hiddenlink" target="rightframe"><b>getDatabasePath</b>
+()</A></nobr><br>
+<!-- Method getDetachWallpaper -->
+<nobr><A HREF="android.view.animation.Animation.html#android.view.animation.Animation.getDetachWallpaper_added()" class="hiddenlink" target="rightframe"><b>getDetachWallpaper</b>
+()</A></nobr><br>
+<!-- Method getDip -->
+<nobr><A HREF="android.text.style.AbsoluteSizeSpan.html#android.text.style.AbsoluteSizeSpan.getDip_added()" class="hiddenlink" target="rightframe"><b>getDip</b>
+()</A></nobr><br>
+<!-- Method getDropDownBackground -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.getDropDownBackground_added()" class="hiddenlink" target="rightframe"><b>getDropDownBackground</b>
+()</A></nobr><br>
+<!-- Method getDropDownHorizontalOffset -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.getDropDownHorizontalOffset_added()" class="hiddenlink" target="rightframe"><b>getDropDownHorizontalOffset</b>
+()</A></nobr><br>
+<!-- Method getDropDownVerticalOffset -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.getDropDownVerticalOffset_added()" class="hiddenlink" target="rightframe"><b>getDropDownVerticalOffset</b>
+()</A></nobr><br>
+<!-- Method getFlashMode -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getFlashMode_added()" class="hiddenlink" target="rightframe"><b>getFlashMode</b>
+()</A></nobr><br>
+<!-- Method getFocusMode -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getFocusMode_added()" class="hiddenlink" target="rightframe"><b>getFocusMode</b>
+()</A></nobr><br>
+<!-- Method getHistoricalPressure -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalPressure_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalPressure</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method getHistoricalSize -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalSize_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalSize</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method getHistoricalX -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalX_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalX</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method getHistoricalY -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalY_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalY</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method getInstallerPackageName -->
+<i>getInstallerPackageName</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getInstallerPackageName_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getInstallerPackageName -->
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getInstallerPackageName_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getIsSyncable -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getIsSyncable_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>getIsSyncable</b>
+(<code>Account, String</code>)</A></nobr><br>
+<!-- Method getJpegQuality -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getJpegQuality_added()" class="hiddenlink" target="rightframe"><b>getJpegQuality</b>
+()</A></nobr><br>
+<!-- Method getJpegThumbnailQuality -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getJpegThumbnailQuality_added()" class="hiddenlink" target="rightframe"><b>getJpegThumbnailQuality</b>
+()</A></nobr><br>
+<!-- Method getJpegThumbnailSize -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getJpegThumbnailSize_added()" class="hiddenlink" target="rightframe"><b>getJpegThumbnailSize</b>
+()</A></nobr><br>
+<!-- Method getKeyDispatcherState -->
+<i>getKeyDispatcherState</i><br>
+ <nobr><A HREF="android.inputmethodservice.AbstractInputMethodService.html#android.inputmethodservice.AbstractInputMethodService.getKeyDispatcherState_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.inputmethodservice.AbstractInputMethodService
+</A></nobr><br>
+<!-- Method getKeyDispatcherState -->
+ <nobr><A HREF="android.view.View.html#android.view.View.getKeyDispatcherState_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.View
+</A></nobr><br>
+<!-- Method getLac -->
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.getLac_added()" class="hiddenlink" target="rightframe"><b>getLac</b>
+()</A></nobr><br>
+<!-- Method getMasterSyncAutomatically -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getMasterSyncAutomatically_added()" class="hiddenlink" target="rightframe"><b>getMasterSyncAutomatically</b>
+()</A></nobr><br>
+<!-- Method getMemoryClass -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getMemoryClass_added()" class="hiddenlink" target="rightframe"><b>getMemoryClass</b>
+()</A></nobr><br>
+<!-- Method getNetworkType -->
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.getNetworkType_added()" class="hiddenlink" target="rightframe"><b>getNetworkType</b>
+()</A></nobr><br>
+<!-- Method getParameters -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.getParameters_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getParameters</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getPointerCount -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getPointerCount_added()" class="hiddenlink" target="rightframe"><b>getPointerCount</b>
+()</A></nobr><br>
+<!-- Method getPointerId -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getPointerId_added(int)" class="hiddenlink" target="rightframe"><b>getPointerId</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getPressure -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getPressure_added(int)" class="hiddenlink" target="rightframe"><b>getPressure</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getProcessMemoryInfo -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getProcessMemoryInfo_added(int[])" class="hiddenlink" target="rightframe"><b>getProcessMemoryInfo</b>
+(<code>int[]</code>)</A></nobr><br>
+<!-- Method getPsc -->
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.getPsc_added()" class="hiddenlink" target="rightframe"><b>getPsc</b>
+()</A></nobr><br>
+<!-- Method getRunningServiceControlPanel -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRunningServiceControlPanel_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getRunningServiceControlPanel</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getSceneMode -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSceneMode_added()" class="hiddenlink" target="rightframe"><b>getSceneMode</b>
+()</A></nobr><br>
+<!-- Method getScrollBarFadeDuration -->
+<nobr><A HREF="android.view.ViewConfiguration.html#android.view.ViewConfiguration.getScrollBarFadeDuration_added()" class="hiddenlink" target="rightframe"><b>getScrollBarFadeDuration</b>
+()</A></nobr><br>
+<!-- Method getScrollDefaultDelay -->
+<nobr><A HREF="android.view.ViewConfiguration.html#android.view.ViewConfiguration.getScrollDefaultDelay_added()" class="hiddenlink" target="rightframe"><b>getScrollDefaultDelay</b>
+()</A></nobr><br>
+<!-- Method getSize -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getSize_added(int)" class="hiddenlink" target="rightframe"><b>getSize</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getSupportedAntibanding -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedAntibanding_added()" class="hiddenlink" target="rightframe"><b>getSupportedAntibanding</b>
+()</A></nobr><br>
+<!-- Method getSupportedColorEffects -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedColorEffects_added()" class="hiddenlink" target="rightframe"><b>getSupportedColorEffects</b>
+()</A></nobr><br>
+<!-- Method getSupportedFlashModes -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedFlashModes_added()" class="hiddenlink" target="rightframe"><b>getSupportedFlashModes</b>
+()</A></nobr><br>
+<!-- Method getSupportedFocusModes -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedFocusModes_added()" class="hiddenlink" target="rightframe"><b>getSupportedFocusModes</b>
+()</A></nobr><br>
+<!-- Method getSupportedPictureFormats -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPictureFormats_added()" class="hiddenlink" target="rightframe"><b>getSupportedPictureFormats</b>
+()</A></nobr><br>
+<!-- Method getSupportedPictureSizes -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPictureSizes_added()" class="hiddenlink" target="rightframe"><b>getSupportedPictureSizes</b>
+()</A></nobr><br>
+<!-- Method getSupportedPreviewFormats -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPreviewFormats_added()" class="hiddenlink" target="rightframe"><b>getSupportedPreviewFormats</b>
+()</A></nobr><br>
+<!-- Method getSupportedPreviewFrameRates -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPreviewFrameRates_added()" class="hiddenlink" target="rightframe"><b>getSupportedPreviewFrameRates</b>
+()</A></nobr><br>
+<!-- Method getSupportedPreviewSizes -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPreviewSizes_added()" class="hiddenlink" target="rightframe"><b>getSupportedPreviewSizes</b>
+()</A></nobr><br>
+<!-- Method getSupportedSceneModes -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedSceneModes_added()" class="hiddenlink" target="rightframe"><b>getSupportedSceneModes</b>
+()</A></nobr><br>
+<!-- Method getSupportedWhiteBalance -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedWhiteBalance_added()" class="hiddenlink" target="rightframe"><b>getSupportedWhiteBalance</b>
+()</A></nobr><br>
+<!-- Method getSyncAdapterTypes -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getSyncAdapterTypes_added()" class="hiddenlink" target="rightframe"><b>getSyncAdapterTypes</b>
+()</A></nobr><br>
+<!-- Method getSyncAutomatically -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getSyncAutomatically_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>getSyncAutomatically</b>
+(<code>Account, String</code>)</A></nobr><br>
+<!-- Method getSystemAvailableFeatures -->
+<i>getSystemAvailableFeatures</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getSystemAvailableFeatures_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getSystemAvailableFeatures -->
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getSystemAvailableFeatures_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getThumbnail -->
+<nobr><A HREF="android.provider.MediaStore.Images.Thumbnails.html#android.provider.MediaStore.Images.Thumbnails.getThumbnail_added(android.content.ContentResolver, long, int, android.graphics.BitmapFactory.Options)" class="hiddenlink" target="rightframe"><b>getThumbnail</b>
+(<code>ContentResolver, long, int, Options</code>)</A></nobr><br>
+<!-- Method getTotalPrivateDirty -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.getTotalPrivateDirty_added()" class="hiddenlink" target="rightframe"><b>getTotalPrivateDirty</b>
+()</A></nobr><br>
+<!-- Method getTotalPss -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.getTotalPss_added()" class="hiddenlink" target="rightframe"><b>getTotalPss</b>
+()</A></nobr><br>
+<!-- Method getTotalSharedDirty -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.getTotalSharedDirty_added()" class="hiddenlink" target="rightframe"><b>getTotalSharedDirty</b>
+()</A></nobr><br>
+<!-- Method getViewBinder -->
+<nobr><A HREF="android.widget.SimpleCursorTreeAdapter.html#android.widget.SimpleCursorTreeAdapter.getViewBinder_added()" class="hiddenlink" target="rightframe"><b>getViewBinder</b>
+()</A></nobr><br>
+<!-- Method getWhiteBalance -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getWhiteBalance_added()" class="hiddenlink" target="rightframe"><b>getWhiteBalance</b>
+()</A></nobr><br>
+<!-- Method getX -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getX_added(int)" class="hiddenlink" target="rightframe"><b>getX</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getY -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getY_added(int)" class="hiddenlink" target="rightframe"><b>getY</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Class GLSurfaceView.EGLContextFactory -->
+<A HREF="pkg_android.opengl.html#GLSurfaceView.EGLContextFactory" class="hiddenlink" target="rightframe"><b><i>GLSurfaceView.EGLContextFactory</i></b></A><br>
+<!-- Class GLSurfaceView.EGLWindowSurfaceFactory -->
+<A HREF="pkg_android.opengl.html#GLSurfaceView.EGLWindowSurfaceFactory" class="hiddenlink" target="rightframe"><b><i>GLSurfaceView.EGLWindowSurfaceFactory</i></b></A><br>
+<!-- Class GpsStatus.NmeaListener -->
+<A HREF="pkg_android.location.html#GpsStatus.NmeaListener" class="hiddenlink" target="rightframe"><b><i>GpsStatus.NmeaListener</i></b></A><br>
+<!-- Field GROUP_SYNC_ACCOUNT_TYPE -->
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_SYNC_ACCOUNT_TYPE" class="hiddenlink" target="rightframe">GROUP_SYNC_ACCOUNT_TYPE</A>
+</nobr><br>
+<!-- Method hasIccCard -->
+<A NAME="H"></A>
+<br><font size="+2">H</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.hasIccCard_added()" class="hiddenlink" target="rightframe"><b>hasIccCard</b>
+()</A></nobr><br>
+<!-- Method hasSystemFeature -->
+<i>hasSystemFeature</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.hasSystemFeature_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method hasSystemFeature -->
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.hasSystemFeature_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Field importanceReasonCode -->
+<A NAME="I"></A>
+<br><font size="+2">I</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.importanceReasonCode" class="hiddenlink" target="rightframe">importanceReasonCode</A>
+</nobr><br>
+<!-- Field importanceReasonComponent -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.importanceReasonComponent" class="hiddenlink" target="rightframe">importanceReasonComponent</A>
+</nobr><br>
+<!-- Field importanceReasonPid -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.importanceReasonPid" class="hiddenlink" target="rightframe">importanceReasonPid</A>
+</nobr><br>
+<!-- Method injectInstrumentation -->
+<nobr><A HREF="android.test.InstrumentationTestCase.html#android.test.InstrumentationTestCase.injectInstrumentation_added(android.app.Instrumentation)" class="hiddenlink" target="rightframe"><b>injectInstrumentation</b>
+(<code>Instrumentation</code>)</A></nobr><br>
+<!-- Method isCanceled -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.isCanceled_added()" class="hiddenlink" target="rightframe"><b>isCanceled</b>
+()</A></nobr><br>
+<!-- Method isFloat -->
+<i>isFloat</i><br>
+ <nobr><A HREF="android.database.AbstractWindowedCursor.html#android.database.AbstractWindowedCursor.isFloat_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.database.AbstractWindowedCursor
+</A></nobr><br>
+<!-- Method isFloat -->
+ <nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.isFloat_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.database.CursorWindow
+</A></nobr><br>
+<!-- Method isInitialStickyBroadcast -->
+<nobr><A HREF="android.content.BroadcastReceiver.html#android.content.BroadcastReceiver.isInitialStickyBroadcast_added()" class="hiddenlink" target="rightframe"><b>isInitialStickyBroadcast</b>
+()</A></nobr><br>
+<!-- Method isLong -->
+<i>isLong</i><br>
+ <nobr><A HREF="android.database.AbstractWindowedCursor.html#android.database.AbstractWindowedCursor.isLong_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.database.AbstractWindowedCursor
+</A></nobr><br>
+<!-- Method isLong -->
+ <nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.isLong_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.database.CursorWindow
+</A></nobr><br>
+<!-- Method isLongPress -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.isLongPress_added()" class="hiddenlink" target="rightframe"><b>isLongPress</b>
+()</A></nobr><br>
+<!-- Method isOrderedBroadcast -->
+<nobr><A HREF="android.content.BroadcastReceiver.html#android.content.BroadcastReceiver.isOrderedBroadcast_added()" class="hiddenlink" target="rightframe"><b>isOrderedBroadcast</b>
+()</A></nobr><br>
+<!-- Method isScrollbarFadingEnabled -->
+<nobr><A HREF="android.view.View.html#android.view.View.isScrollbarFadingEnabled_added()" class="hiddenlink" target="rightframe"><b>isScrollbarFadingEnabled</b>
+()</A></nobr><br>
+<!-- Method isString -->
+<i>isString</i><br>
+ <nobr><A HREF="android.database.AbstractWindowedCursor.html#android.database.AbstractWindowedCursor.isString_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.database.AbstractWindowedCursor
+</A></nobr><br>
+<!-- Method isString -->
+ <nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.isString_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.database.CursorWindow
+</A></nobr><br>
+<!-- Method isSyncActive -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.isSyncActive_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>isSyncActive</b>
+(<code>Account, String</code>)</A></nobr><br>
+<!-- Method isSyncPending -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.isSyncPending_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>isSyncPending</b>
+(<code>Account, String</code>)</A></nobr><br>
+<!-- Method isTracking -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.isTracking_added()" class="hiddenlink" target="rightframe"><b>isTracking</b>
+()</A></nobr><br>
+<!-- Method isWiredHeadsetOn -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.isWiredHeadsetOn_added()" class="hiddenlink" target="rightframe"><b>isWiredHeadsetOn</b>
+()</A></nobr><br>
+<!-- Class KeyEvent.DispatcherState -->
+<A NAME="K"></A>
+<br><font size="+2">K</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.view.html#KeyEvent.DispatcherState" class="hiddenlink" target="rightframe"><b>KeyEvent.DispatcherState</b></A><br>
+<!-- Field killAfterRestore -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.killAfterRestore" class="hiddenlink" target="rightframe">killAfterRestore</A>
+</nobr><br>
+<!-- Class LabeledIntent -->
+<A NAME="L"></A>
+<br><font size="+2">L</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.content.pm.html#LabeledIntent" class="hiddenlink" target="rightframe"><b>LabeledIntent</b></A><br>
+<!-- Class LineHeightSpan.WithDensity -->
+<A HREF="pkg_android.text.style.html#LineHeightSpan.WithDensity" class="hiddenlink" target="rightframe"><b><i>LineHeightSpan.WithDensity</i></b></A><br>
+<!-- Method lock -->
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.lock_added()" class="hiddenlink" target="rightframe"><b>lock</b>
+()</A></nobr><br>
+<!-- Field MANAGE_ACCOUNTS -->
+<A NAME="M"></A>
+<br><font size="+2">M</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.MANAGE_ACCOUNTS" class="hiddenlink" target="rightframe">MANAGE_ACCOUNTS</A>
+</nobr><br>
+<!-- Field MEDIA_INFO_METADATA_UPDATE -->
+<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.MEDIA_INFO_METADATA_UPDATE" class="hiddenlink" target="rightframe">MEDIA_INFO_METADATA_UPDATE</A>
+</nobr><br>
+<!-- Class MediaStore.Video.Thumbnails -->
+<A HREF="pkg_android.provider.html#MediaStore.Video.Thumbnails" class="hiddenlink" target="rightframe"><b>MediaStore.Video.Thumbnails</b></A><br>
+<!-- Field METADATA_DOCK_HOME -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.METADATA_DOCK_HOME" class="hiddenlink" target="rightframe">METADATA_DOCK_HOME</A>
+</nobr><br>
+<!-- Field navigationHidden -->
+<A NAME="N"></A>
+<br><font size="+2">N</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.navigationHidden" class="hiddenlink" target="rightframe">navigationHidden</A>
+</nobr><br>
+<!-- Field NAVIGATIONHIDDEN_NO -->
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.NAVIGATIONHIDDEN_NO" class="hiddenlink" target="rightframe">NAVIGATIONHIDDEN_NO</A>
+</nobr><br>
+<!-- Field NAVIGATIONHIDDEN_UNDEFINED -->
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.NAVIGATIONHIDDEN_UNDEFINED" class="hiddenlink" target="rightframe">NAVIGATIONHIDDEN_UNDEFINED</A>
+</nobr><br>
+<!-- Field NAVIGATIONHIDDEN_YES -->
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.NAVIGATIONHIDDEN_YES" class="hiddenlink" target="rightframe">NAVIGATIONHIDDEN_YES</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_1xRTT -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_1xRTT" class="hiddenlink" target="rightframe">NETWORK_TYPE_1xRTT</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_CDMA -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_CDMA" class="hiddenlink" target="rightframe">NETWORK_TYPE_CDMA</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_EVDO_0 -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_EVDO_0" class="hiddenlink" target="rightframe">NETWORK_TYPE_EVDO_0</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_EVDO_A -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_EVDO_A" class="hiddenlink" target="rightframe">NETWORK_TYPE_EVDO_A</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_HSDPA -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_HSDPA" class="hiddenlink" target="rightframe">NETWORK_TYPE_HSDPA</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_HSPA -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_HSPA" class="hiddenlink" target="rightframe">NETWORK_TYPE_HSPA</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_HSUPA -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_HSUPA" class="hiddenlink" target="rightframe">NETWORK_TYPE_HSUPA</A>
+</nobr><br>
+<!-- Method newDrawable -->
+<nobr><A HREF="android.graphics.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.newDrawable_added(android.content.res.Resources)" class="hiddenlink" target="rightframe"><b>newDrawable</b>
+(<code>Resources</code>)</A></nobr><br>
+<!-- Method notify -->
+<nobr><A HREF="android.app.NotificationManager.html#android.app.NotificationManager.notify_added(java.lang.String, int, android.app.Notification)" class="hiddenlink" target="rightframe"><b>notify</b>
+(<code>String, int, Notification</code>)</A></nobr><br>
+<!-- Method obtain -->
+<A NAME="O"></A>
+<br><font size="+2">O</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.obtain_added(long, long, int, int, float, float, float, float, int, float, float, int, int)" class="hiddenlink" target="rightframe"><b>obtain</b>
+(<code>long, long, int, int, float, float, float, float, int, float, float, int, int</code>)</A></nobr><br>
+<!-- Method obtainNoHistory -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.obtainNoHistory_added(android.view.MotionEvent)" class="hiddenlink" target="rightframe"><b>obtainNoHistory</b>
+(<code>MotionEvent</code>)</A></nobr><br>
+<!-- Method onAttachedToWindow -->
+<i>onAttachedToWindow</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onAttachedToWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Activity
+</A></nobr><br>
+<!-- Method onAttachedToWindow -->
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onAttachedToWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Dialog
+</A></nobr><br>
+<!-- Method onAttachedToWindow -->
+ <nobr><A HREF="android.view.Window.Callback.html#android.view.Window.Callback.onAttachedToWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.Window.Callback
+</A></nobr><br>
+<!-- Method onBackPressed -->
+<i>onBackPressed</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onBackPressed_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Activity
+</A></nobr><br>
+<!-- Method onBackPressed -->
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onBackPressed_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Dialog
+</A></nobr><br>
+<!-- Method onDetachedFromWindow -->
+<i>onDetachedFromWindow</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onDetachedFromWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Activity
+</A></nobr><br>
+<!-- Method onDetachedFromWindow -->
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onDetachedFromWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Dialog
+</A></nobr><br>
+<!-- Method onDetachedFromWindow -->
+ <nobr><A HREF="android.view.Window.Callback.html#android.view.Window.Callback.onDetachedFromWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.Window.Callback
+</A></nobr><br>
+<!-- Method onExceededDatabaseQuota -->
+<i>onExceededDatabaseQuota</i><br>
+ <nobr><A HREF="android.webkit.CallbackProxy.html#android.webkit.CallbackProxy.onExceededDatabaseQuota_added(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, String, long, long, long, QuotaUpdater</code>)</b> in android.webkit.CallbackProxy
+</A></nobr><br>
+<!-- Method onExceededDatabaseQuota -->
+ <nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onExceededDatabaseQuota_added(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, String, long, long, long, QuotaUpdater</code>)</b> in android.webkit.WebChromeClient
+</A></nobr><br>
+<!-- Method onGeolocationPermissionsHidePrompt -->
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onGeolocationPermissionsHidePrompt_added()" class="hiddenlink" target="rightframe"><b>onGeolocationPermissionsHidePrompt</b>
+()</A></nobr><br>
+<!-- Method onGeolocationPermissionsShowPrompt -->
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onGeolocationPermissionsShowPrompt_added(java.lang.String, android.webkit.GeolocationPermissions.Callback)" class="hiddenlink" target="rightframe"><b>onGeolocationPermissionsShowPrompt</b>
+(<code>String, Callback</code>)</A></nobr><br>
+<!-- Method onKeyLongPress -->
+<i>onKeyLongPress</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.app.Activity
+</A></nobr><br>
+<!-- Method onKeyLongPress -->
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.app.Dialog
+</A></nobr><br>
+<!-- Method onKeyLongPress -->
+ <nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.inputmethodservice.InputMethodService
+</A></nobr><br>
+<!-- Method onKeyLongPress -->
+ <nobr><A HREF="android.view.KeyEvent.Callback.html#android.view.KeyEvent.Callback.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.view.KeyEvent.Callback
+</A></nobr><br>
+<!-- Method onKeyLongPress -->
+ <nobr><A HREF="android.view.View.html#android.view.View.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.view.View
+</A></nobr><br>
+<!-- Method onQueryPackageManager -->
+<nobr><A HREF="android.app.LauncherActivity.html#android.app.LauncherActivity.onQueryPackageManager_added(android.content.Intent)" class="hiddenlink" target="rightframe"><b>onQueryPackageManager</b>
+(<code>Intent</code>)</A></nobr><br>
+<!-- Method onSetContentView -->
+<nobr><A HREF="android.app.LauncherActivity.html#android.app.LauncherActivity.onSetContentView_added()" class="hiddenlink" target="rightframe"><b>onSetContentView</b>
+()</A></nobr><br>
+<!-- Method onStartCommand -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.onStartCommand_added(android.content.Intent, int, int)" class="hiddenlink" target="rightframe"><b>onStartCommand</b>
+(<code>Intent, int, int</code>)</A></nobr><br>
+<!-- Class OperationApplicationException -->
+<A HREF="pkg_android.content.html#OperationApplicationException" class="hiddenlink" target="rightframe"><b>OperationApplicationException</b></A><br>
+<!-- Method overridePendingTransition -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.overridePendingTransition_added(int, int)" class="hiddenlink" target="rightframe"><b>overridePendingTransition</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Class Pair -->
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.util.html#Pair" class="hiddenlink" target="rightframe"><b>Pair</b></A><br>
+<!-- Class ParcelUuid -->
+<A HREF="pkg_android.os.html#ParcelUuid" class="hiddenlink" target="rightframe"><b>ParcelUuid</b></A><br>
+<!-- Field PHONE_TYPE_CDMA -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.PHONE_TYPE_CDMA" class="hiddenlink" target="rightframe">PHONE_TYPE_CDMA</A>
+</nobr><br>
+<!-- Class PluginStub -->
+<A HREF="pkg_android.webkit.html#PluginStub" class="hiddenlink" target="rightframe"><b><i>PluginStub</i></b></A><br>
+<!-- Method postUrl -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.postUrl_added(java.lang.String, byte[])" class="hiddenlink" target="rightframe"><b>postUrl</b>
+(<code>String, byte[]</code>)</A></nobr><br>
+<!-- Class QuickContactBadge -->
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.widget.html#QuickContactBadge" class="hiddenlink" target="rightframe"><b>QuickContactBadge</b></A><br>
+<!-- Method quit -->
+<nobr><A HREF="android.os.HandlerThread.html#android.os.HandlerThread.quit_added()" class="hiddenlink" target="rightframe"><b>quit</b>
+()</A></nobr><br>
+<!-- Method readExceptionWithOperationApplicationExceptionFromParcel -->
+<A NAME="R"></A>
+<br><font size="+2">R</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.database.DatabaseUtils.html#android.database.DatabaseUtils.readExceptionWithOperationApplicationExceptionFromParcel_added(android.os.Parcel)" class="hiddenlink" target="rightframe"><b>readExceptionWithOperationApplicationExceptionFromParcel</b>
+(<code>Parcel</code>)</A></nobr><br>
+<!-- Method readFromParcel -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.readFromParcel_added(android.os.Parcel)" class="hiddenlink" target="rightframe"><b>readFromParcel</b>
+(<code>Parcel</code>)</A></nobr><br>
+<!-- Field REASON_PROVIDER_IN_USE -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.REASON_PROVIDER_IN_USE" class="hiddenlink" target="rightframe">REASON_PROVIDER_IN_USE</A>
+</nobr><br>
+<!-- Field REASON_SERVICE_IN_USE -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.REASON_SERVICE_IN_USE" class="hiddenlink" target="rightframe">REASON_SERVICE_IN_USE</A>
+</nobr><br>
+<!-- Field REASON_UNKNOWN -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.REASON_UNKNOWN" class="hiddenlink" target="rightframe">REASON_UNKNOWN</A>
+</nobr><br>
+<!-- Method remove -->
+<nobr><A HREF="java.util.concurrent.BlockingQueue.html#java.util.concurrent.BlockingQueue.remove_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>remove</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Method removeGpsData -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.removeGpsData_added()" class="hiddenlink" target="rightframe"><b>removeGpsData</b>
+()</A></nobr><br>
+<!-- Method removeNmeaListener -->
+<nobr><A HREF="android.location.LocationManager.html#android.location.LocationManager.removeNmeaListener_added(android.location.GpsStatus.NmeaListener)" class="hiddenlink" target="rightframe"><b>removeNmeaListener</b>
+(<code>NmeaListener</code>)</A></nobr><br>
+<!-- Method removeStatusChangeListener -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.removeStatusChangeListener_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>removeStatusChangeListener</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Field reqFeatures -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.reqFeatures" class="hiddenlink" target="rightframe">reqFeatures</A>
+</nobr><br>
+<!-- Method requestSync -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.requestSync_added(android.accounts.Account, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>requestSync</b>
+(<code>Account, String, Bundle</code>)</A></nobr><br>
+<!-- Field required -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.required" class="hiddenlink" target="rightframe">required</A>
+</nobr><br>
+<!-- Field resolvePackageName -->
+<nobr><A HREF="android.content.pm.ResolveInfo.html#android.content.pm.ResolveInfo.resolvePackageName" class="hiddenlink" target="rightframe">resolvePackageName</A>
+</nobr><br>
+<!-- Field restoreNeedsApplication -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.restoreNeedsApplication" class="hiddenlink" target="rightframe">restoreNeedsApplication</A>
+</nobr><br>
+<!-- Field SCENE_MODE_ACTION -->
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_ACTION" class="hiddenlink" target="rightframe">SCENE_MODE_ACTION</A>
+</nobr><br>
+<!-- Field SCENE_MODE_AUTO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_AUTO" class="hiddenlink" target="rightframe">SCENE_MODE_AUTO</A>
+</nobr><br>
+<!-- Field SCENE_MODE_BEACH -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_BEACH" class="hiddenlink" target="rightframe">SCENE_MODE_BEACH</A>
+</nobr><br>
+<!-- Field SCENE_MODE_CANDLELIGHT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_CANDLELIGHT" class="hiddenlink" target="rightframe">SCENE_MODE_CANDLELIGHT</A>
+</nobr><br>
+<!-- Field SCENE_MODE_FIREWORKS -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_FIREWORKS" class="hiddenlink" target="rightframe">SCENE_MODE_FIREWORKS</A>
+</nobr><br>
+<!-- Field SCENE_MODE_LANDSCAPE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_LANDSCAPE" class="hiddenlink" target="rightframe">SCENE_MODE_LANDSCAPE</A>
+</nobr><br>
+<!-- Field SCENE_MODE_NIGHT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_NIGHT" class="hiddenlink" target="rightframe">SCENE_MODE_NIGHT</A>
+</nobr><br>
+<!-- Field SCENE_MODE_NIGHT_PORTRAIT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_NIGHT_PORTRAIT" class="hiddenlink" target="rightframe">SCENE_MODE_NIGHT_PORTRAIT</A>
+</nobr><br>
+<!-- Field SCENE_MODE_PARTY -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_PARTY" class="hiddenlink" target="rightframe">SCENE_MODE_PARTY</A>
+</nobr><br>
+<!-- Field SCENE_MODE_PORTRAIT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_PORTRAIT" class="hiddenlink" target="rightframe">SCENE_MODE_PORTRAIT</A>
+</nobr><br>
+<!-- Field SCENE_MODE_SNOW -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_SNOW" class="hiddenlink" target="rightframe">SCENE_MODE_SNOW</A>
+</nobr><br>
+<!-- Field SCENE_MODE_SPORTS -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_SPORTS" class="hiddenlink" target="rightframe">SCENE_MODE_SPORTS</A>
+</nobr><br>
+<!-- Field SCENE_MODE_STEADYPHOTO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_STEADYPHOTO" class="hiddenlink" target="rightframe">SCENE_MODE_STEADYPHOTO</A>
+</nobr><br>
+<!-- Field SCENE_MODE_SUNSET -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_SUNSET" class="hiddenlink" target="rightframe">SCENE_MODE_SUNSET</A>
+</nobr><br>
+<!-- Field SCENE_MODE_THEATRE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_THEATRE" class="hiddenlink" target="rightframe">SCENE_MODE_THEATRE</A>
+</nobr><br>
+<!-- Field screen_background_dark_transparent -->
+<nobr><A HREF="android.R.drawable.html#android.R.drawable.screen_background_dark_transparent" class="hiddenlink" target="rightframe">screen_background_dark_transparent</A>
+</nobr><br>
+<!-- Field screen_background_light_transparent -->
+<nobr><A HREF="android.R.drawable.html#android.R.drawable.screen_background_light_transparent" class="hiddenlink" target="rightframe">screen_background_light_transparent</A>
+</nobr><br>
+<!-- Field scrollbarDefaultDelayBeforeFade -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.scrollbarDefaultDelayBeforeFade" class="hiddenlink" target="rightframe">scrollbarDefaultDelayBeforeFade</A>
+</nobr><br>
+<!-- Field scrollbarFadeDuration -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.scrollbarFadeDuration" class="hiddenlink" target="rightframe">scrollbarFadeDuration</A>
+</nobr><br>
+<!-- Method sendStickyOrderedBroadcast -->
+<i>sendStickyOrderedBroadcast</i><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</b> in android.content.Context
+</A></nobr><br>
+<!-- Method sendStickyOrderedBroadcast -->
+ <nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</b> in android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method sendStickyOrderedBroadcast -->
+ <nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</b> in android.test.mock.MockContext
+</A></nobr><br>
+<!-- Method setAntibanding -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setAntibanding_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setAntibanding</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setColorEffect -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setColorEffect_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setColorEffect</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setDatabaseEnabled -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setDatabaseEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setDatabaseEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setDatabasePath -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setDatabasePath_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDatabasePath</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setDetachWallpaper -->
+<nobr><A HREF="android.view.animation.Animation.html#android.view.animation.Animation.setDetachWallpaper_added(boolean)" class="hiddenlink" target="rightframe"><b>setDetachWallpaper</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setDropDownBackgroundDrawable -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownBackgroundDrawable_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setDropDownBackgroundDrawable</b>
+(<code>Drawable</code>)</A></nobr><br>
+<!-- Method setDropDownBackgroundResource -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownBackgroundResource_added(int)" class="hiddenlink" target="rightframe"><b>setDropDownBackgroundResource</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setDropDownHorizontalOffset -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownHorizontalOffset_added(int)" class="hiddenlink" target="rightframe"><b>setDropDownHorizontalOffset</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setDropDownVerticalOffset -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownVerticalOffset_added(int)" class="hiddenlink" target="rightframe"><b>setDropDownVerticalOffset</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setEGLContextFactory -->
+<nobr><A HREF="android.opengl.GLSurfaceView.html#android.opengl.GLSurfaceView.setEGLContextFactory_added(android.opengl.GLSurfaceView.EGLContextFactory)" class="hiddenlink" target="rightframe"><b>setEGLContextFactory</b>
+(<code>EGLContextFactory</code>)</A></nobr><br>
+<!-- Method setEGLWindowSurfaceFactory -->
+<nobr><A HREF="android.opengl.GLSurfaceView.html#android.opengl.GLSurfaceView.setEGLWindowSurfaceFactory_added(android.opengl.GLSurfaceView.EGLWindowSurfaceFactory)" class="hiddenlink" target="rightframe"><b>setEGLWindowSurfaceFactory</b>
+(<code>EGLWindowSurfaceFactory</code>)</A></nobr><br>
+<!-- Method setFlashMode -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setFlashMode_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setFlashMode</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setFocusMode -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setFocusMode_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setFocusMode</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setGeolocationDatabasePath -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setGeolocationDatabasePath_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setGeolocationDatabasePath</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setGeolocationEnabled -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setGeolocationEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setGeolocationEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setGpsAltitude -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsAltitude_added(double)" class="hiddenlink" target="rightframe"><b>setGpsAltitude</b>
+(<code>double</code>)</A></nobr><br>
+<!-- Method setGpsLatitude -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsLatitude_added(double)" class="hiddenlink" target="rightframe"><b>setGpsLatitude</b>
+(<code>double</code>)</A></nobr><br>
+<!-- Method setGpsLongitude -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsLongitude_added(double)" class="hiddenlink" target="rightframe"><b>setGpsLongitude</b>
+(<code>double</code>)</A></nobr><br>
+<!-- Method setGpsTimestamp -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsTimestamp_added(long)" class="hiddenlink" target="rightframe"><b>setGpsTimestamp</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setInstrumentation -->
+<nobr><A HREF="android.test.AndroidTestRunner.html#android.test.AndroidTestRunner.setInstrumentation_added(android.app.Instrumentation)" class="hiddenlink" target="rightframe"><b>setInstrumentation</b>
+(<code>Instrumentation</code>)</A></nobr><br>
+<!-- Method setIntentRedelivery -->
+<nobr><A HREF="android.app.IntentService.html#android.app.IntentService.setIntentRedelivery_added(boolean)" class="hiddenlink" target="rightframe"><b>setIntentRedelivery</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setIsSyncable -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.setIsSyncable_added(android.accounts.Account, java.lang.String, int)" class="hiddenlink" target="rightframe"><b>setIsSyncable</b>
+(<code>Account, String, int</code>)</A></nobr><br>
+<!-- Method setJpegQuality -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setJpegQuality_added(int)" class="hiddenlink" target="rightframe"><b>setJpegQuality</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setJpegThumbnailQuality -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setJpegThumbnailQuality_added(int)" class="hiddenlink" target="rightframe"><b>setJpegThumbnailQuality</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setJpegThumbnailSize -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setJpegThumbnailSize_added(int, int)" class="hiddenlink" target="rightframe"><b>setJpegThumbnailSize</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method setMasterSyncAutomatically -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.setMasterSyncAutomatically_added(boolean)" class="hiddenlink" target="rightframe"><b>setMasterSyncAutomatically</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setParameters -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.setParameters_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setParameters</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setRotation -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setRotation_added(int)" class="hiddenlink" target="rightframe"><b>setRotation</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setSceneMode -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setSceneMode_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setSceneMode</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setScrollbarFadingEnabled -->
+<nobr><A HREF="android.view.View.html#android.view.View.setScrollbarFadingEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setScrollbarFadingEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setSyncAutomatically -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.setSyncAutomatically_added(android.accounts.Account, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setSyncAutomatically</b>
+(<code>Account, String, boolean</code>)</A></nobr><br>
+<!-- Method setViewBinder -->
+<nobr><A HREF="android.widget.SimpleCursorTreeAdapter.html#android.widget.SimpleCursorTreeAdapter.setViewBinder_added(android.widget.SimpleCursorTreeAdapter.ViewBinder)" class="hiddenlink" target="rightframe"><b>setViewBinder</b>
+(<code>ViewBinder</code>)</A></nobr><br>
+<!-- Method setViewText -->
+<nobr><A HREF="android.widget.SimpleCursorTreeAdapter.html#android.widget.SimpleCursorTreeAdapter.setViewText_added(android.widget.TextView, java.lang.String)" class="hiddenlink" target="rightframe"><b>setViewText</b>
+(<code>TextView, String</code>)</A></nobr><br>
+<!-- Method setWhiteBalance -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setWhiteBalance_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setWhiteBalance</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setWiredHeadsetOn -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.setWiredHeadsetOn_added(boolean)" class="hiddenlink" target="rightframe"><b>setWiredHeadsetOn</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setZOrderMediaOverlay -->
+<nobr><A HREF="android.view.SurfaceView.html#android.view.SurfaceView.setZOrderMediaOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setZOrderMediaOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setZOrderOnTop -->
+<nobr><A HREF="android.view.SurfaceView.html#android.view.SurfaceView.setZOrderOnTop_added(boolean)" class="hiddenlink" target="rightframe"><b>setZOrderOnTop</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Class SimpleCursorTreeAdapter.ViewBinder -->
+<A HREF="pkg_android.widget.html#SimpleCursorTreeAdapter.ViewBinder" class="hiddenlink" target="rightframe"><b><i>SimpleCursorTreeAdapter.ViewBinder</i></b></A><br>
+<!-- Field smallIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.smallIcon" class="hiddenlink" target="rightframe">smallIcon</A>
+</nobr><br>
+<!-- Class SQLiteTransactionListener -->
+<A HREF="pkg_android.database.sqlite.html#SQLiteTransactionListener" class="hiddenlink" target="rightframe"><b><i>SQLiteTransactionListener</i></b></A><br>
+<!-- Field START_CONTINUATION_MASK -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_CONTINUATION_MASK" class="hiddenlink" target="rightframe">START_CONTINUATION_MASK</A>
+</nobr><br>
+<!-- Field START_FLAG_REDELIVERY -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_FLAG_REDELIVERY" class="hiddenlink" target="rightframe">START_FLAG_REDELIVERY</A>
+</nobr><br>
+<!-- Field START_FLAG_RETRY -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_FLAG_RETRY" class="hiddenlink" target="rightframe">START_FLAG_RETRY</A>
+</nobr><br>
+<!-- Field START_NOT_STICKY -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_NOT_STICKY" class="hiddenlink" target="rightframe">START_NOT_STICKY</A>
+</nobr><br>
+<!-- Field START_REDELIVER_INTENT -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_REDELIVER_INTENT" class="hiddenlink" target="rightframe">START_REDELIVER_INTENT</A>
+</nobr><br>
+<!-- Field START_STICKY -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_STICKY" class="hiddenlink" target="rightframe">START_STICKY</A>
+</nobr><br>
+<!-- Field START_STICKY_COMPATIBILITY -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_STICKY_COMPATIBILITY" class="hiddenlink" target="rightframe">START_STICKY_COMPATIBILITY</A>
+</nobr><br>
+<!-- Method startForeground -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.startForeground_added(int, android.app.Notification)" class="hiddenlink" target="rightframe"><b>startForeground</b>
+(<code>int, Notification</code>)</A></nobr><br>
+<!-- Method startIntentSender -->
+<i>startIntentSender</i><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>IntentSender, Intent, int, int, int</code>)</b> in android.content.Context
+</A></nobr><br>
+<!-- Method startIntentSender -->
+ <nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>IntentSender, Intent, int, int, int</code>)</b> in android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method startIntentSender -->
+ <nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>IntentSender, Intent, int, int, int</code>)</b> in android.test.mock.MockContext
+</A></nobr><br>
+<!-- Method startIntentSenderForResult -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startIntentSenderForResult_added(android.content.IntentSender, int, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe"><b>startIntentSenderForResult</b>
+(<code>IntentSender, int, Intent, int, int, int</code>)</A></nobr><br>
+<!-- Method startIntentSenderFromChild -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startIntentSenderFromChild_added(android.app.Activity, android.content.IntentSender, int, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe"><b>startIntentSenderFromChild</b>
+(<code>Activity, IntentSender, int, Intent, int, int, int</code>)</A></nobr><br>
+<!-- Method startTone -->
+<nobr><A HREF="android.media.ToneGenerator.html#android.media.ToneGenerator.startTone_added(int, int)" class="hiddenlink" target="rightframe"><b>startTone</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method startTracking -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.startTracking_added()" class="hiddenlink" target="rightframe"><b>startTracking</b>
+()</A></nobr><br>
+<!-- Field stat_notify_sdcard_prepare -->
+<nobr><A HREF="android.R.drawable.html#android.R.drawable.stat_notify_sdcard_prepare" class="hiddenlink" target="rightframe">stat_notify_sdcard_prepare</A>
+</nobr><br>
+<!-- Method stopForeground -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.stopForeground_added(boolean)" class="hiddenlink" target="rightframe"><b>stopForeground</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Field STREAM_DTMF -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.STREAM_DTMF" class="hiddenlink" target="rightframe">STREAM_DTMF</A>
+</nobr><br>
+<!-- Field SUGGEST_PARAMETER_LIMIT -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_PARAMETER_LIMIT" class="hiddenlink" target="rightframe">SUGGEST_PARAMETER_LIMIT</A>
+</nobr><br>
+<!-- Field summaryColumn -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.summaryColumn" class="hiddenlink" target="rightframe">summaryColumn</A>
+</nobr><br>
+<!-- Field supportsUploading -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.supportsUploading" class="hiddenlink" target="rightframe">supportsUploading</A>
+</nobr><br>
+<!-- Field SYNC_EXTRAS_INITIALIZE -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_INITIALIZE" class="hiddenlink" target="rightframe">SYNC_EXTRAS_INITIALIZE</A>
+</nobr><br>
+<!-- Field SYNC_EXTRAS_MANUAL -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_MANUAL" class="hiddenlink" target="rightframe">SYNC_EXTRAS_MANUAL</A>
+</nobr><br>
+<!-- Class SyncAdapterType -->
+<A HREF="pkg_android.content.html#SyncAdapterType" class="hiddenlink" target="rightframe"><b>SyncAdapterType</b></A><br>
+<!-- Class SyncContext -->
+<A HREF="pkg_android.content.html#SyncContext" class="hiddenlink" target="rightframe"><b>SyncContext</b></A><br>
+<!-- Class SyncResult -->
+<A HREF="pkg_android.content.html#SyncResult" class="hiddenlink" target="rightframe"><b>SyncResult</b></A><br>
+<!-- Class SyncStateContract -->
+<A HREF="pkg_android.provider.html#SyncStateContract" class="hiddenlink" target="rightframe"><b>SyncStateContract</b></A><br>
+<!-- Class SyncStateContract.Columns -->
+<A HREF="pkg_android.provider.html#SyncStateContract.Columns" class="hiddenlink" target="rightframe"><b><i>SyncStateContract.Columns</i></b></A><br>
+<!-- Class SyncStateContract.Constants -->
+<A HREF="pkg_android.provider.html#SyncStateContract.Constants" class="hiddenlink" target="rightframe"><b>SyncStateContract.Constants</b></A><br>
+<!-- Class SyncStateContract.Helpers -->
+<A HREF="pkg_android.provider.html#SyncStateContract.Helpers" class="hiddenlink" target="rightframe"><b>SyncStateContract.Helpers</b></A><br>
+<!-- Class SyncStats -->
+<A HREF="pkg_android.content.html#SyncStats" class="hiddenlink" target="rightframe"><b>SyncStats</b></A><br>
+<!-- Class SyncStatusObserver -->
+<A HREF="pkg_android.content.html#SyncStatusObserver" class="hiddenlink" target="rightframe"><b><i>SyncStatusObserver</i></b></A><br>
+<!-- Method takePicture -->
+<A NAME="T"></A>
+<br><font size="+2">T</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.takePicture_added(android.hardware.Camera.ShutterCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback)" class="hiddenlink" target="rightframe"><b>takePicture</b>
+(<code>ShutterCallback, PictureCallback, PictureCallback, PictureCallback</code>)</A></nobr><br>
+<!-- Field textAppearanceSearchResultSubtitle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceSearchResultSubtitle" class="hiddenlink" target="rightframe">textAppearanceSearchResultSubtitle</A>
+</nobr><br>
+<!-- Field textAppearanceSearchResultTitle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceSearchResultTitle" class="hiddenlink" target="rightframe">textAppearanceSearchResultTitle</A>
+</nobr><br>
+<!-- Field Theme_Light_WallpaperSettings -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Light_WallpaperSettings" class="hiddenlink" target="rightframe">Theme_Light_WallpaperSettings</A>
+</nobr><br>
+<!-- Field Theme_Wallpaper -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Wallpaper" class="hiddenlink" target="rightframe">Theme_Wallpaper</A>
+</nobr><br>
+<!-- Field Theme_Wallpaper_NoTitleBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Wallpaper_NoTitleBar" class="hiddenlink" target="rightframe">Theme_Wallpaper_NoTitleBar</A>
+</nobr><br>
+<!-- Field Theme_Wallpaper_NoTitleBar_Fullscreen -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Wallpaper_NoTitleBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Wallpaper_NoTitleBar_Fullscreen</A>
+</nobr><br>
+<!-- Field Theme_WallpaperSettings -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_WallpaperSettings" class="hiddenlink" target="rightframe">Theme_WallpaperSettings</A>
+</nobr><br>
+<!-- Field THUMB_DATA -->
+<nobr><A HREF="android.provider.MediaStore.Images.Thumbnails.html#android.provider.MediaStore.Images.Thumbnails.THUMB_DATA" class="hiddenlink" target="rightframe">THUMB_DATA</A>
+</nobr><br>
+<!-- Field thumbnail -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbnail" class="hiddenlink" target="rightframe">thumbnail</A>
+</nobr><br>
+<!-- Method triggerSearch -->
+<i>triggerSearch</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.triggerSearch_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, Bundle</code>)</b> in android.app.Activity
+</A></nobr><br>
+<!-- Method triggerSearch -->
+ <nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.triggerSearch_added(java.lang.String, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, ComponentName, Bundle</code>)</b> in android.app.SearchManager
+</A></nobr><br>
+<!-- Field TYPE_TEXT_FLAG_NO_SUGGESTIONS -->
+<nobr><A HREF="android.text.InputType.html#android.text.InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS" class="hiddenlink" target="rightframe">TYPE_TEXT_FLAG_NO_SUGGESTIONS</A>
+</nobr><br>
+<!-- Field TYPE_WALLPAPER -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.TYPE_WALLPAPER" class="hiddenlink" target="rightframe">TYPE_WALLPAPER</A>
+</nobr><br>
+<!-- Field uid -->
+<A NAME="U"></A>
+<br><font size="+2">U</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>uid</i><br>
+ in
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.uid" class="hiddenlink" target="rightframe">android.app.ActivityManager.RunningAppProcessInfo</A>
+</nobr><br>
+<!-- Field uid -->
+ in
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.uid" class="hiddenlink" target="rightframe">android.app.ActivityManager.RunningServiceInfo</A>
+</nobr><br>
+<!-- Method unlock -->
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.unlock_added()" class="hiddenlink" target="rightframe"><b>unlock</b>
+()</A></nobr><br>
+<!-- Field USE_CREDENTIALS -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.USE_CREDENTIALS" class="hiddenlink" target="rightframe">USE_CREDENTIALS</A>
+</nobr><br>
+<!-- Field userVisible -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.userVisible" class="hiddenlink" target="rightframe">userVisible</A>
+</nobr><br>
+<!-- Field VIRTUAL_KEY -->
+<A NAME="V"></A>
+<br><font size="+2">V</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.HapticFeedbackConstants.html#android.view.HapticFeedbackConstants.VIRTUAL_KEY" class="hiddenlink" target="rightframe">VIRTUAL_KEY</A>
+</nobr><br>
+<!-- Field wallpaperCloseEnterAnimation -->
+<A NAME="W"></A>
+<br><font size="+2">W</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperCloseEnterAnimation" class="hiddenlink" target="rightframe">wallpaperCloseEnterAnimation</A>
+</nobr><br>
+<!-- Field wallpaperCloseExitAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperCloseExitAnimation" class="hiddenlink" target="rightframe">wallpaperCloseExitAnimation</A>
+</nobr><br>
+<!-- Field wallpaperIntraCloseEnterAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraCloseEnterAnimation" class="hiddenlink" target="rightframe">wallpaperIntraCloseEnterAnimation</A>
+</nobr><br>
+<!-- Field wallpaperIntraCloseExitAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraCloseExitAnimation" class="hiddenlink" target="rightframe">wallpaperIntraCloseExitAnimation</A>
+</nobr><br>
+<!-- Field wallpaperIntraOpenEnterAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraOpenEnterAnimation" class="hiddenlink" target="rightframe">wallpaperIntraOpenEnterAnimation</A>
+</nobr><br>
+<!-- Field wallpaperIntraOpenExitAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraOpenExitAnimation" class="hiddenlink" target="rightframe">wallpaperIntraOpenExitAnimation</A>
+</nobr><br>
+<!-- Class WallpaperManager -->
+<A HREF="pkg_android.app.html#WallpaperManager" class="hiddenlink" target="rightframe"><b>WallpaperManager</b></A><br>
+<!-- Field wallpaperOpenEnterAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperOpenEnterAnimation" class="hiddenlink" target="rightframe">wallpaperOpenEnterAnimation</A>
+</nobr><br>
+<!-- Field wallpaperOpenExitAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperOpenExitAnimation" class="hiddenlink" target="rightframe">wallpaperOpenExitAnimation</A>
+</nobr><br>
+<!-- Class WebStorage -->
+<A HREF="pkg_android.webkit.html#WebStorage" class="hiddenlink" target="rightframe"><b>WebStorage</b></A><br>
+<!-- Class WebStorage.QuotaUpdater -->
+<A HREF="pkg_android.webkit.html#WebStorage.QuotaUpdater" class="hiddenlink" target="rightframe"><b><i>WebStorage.QuotaUpdater</i></b></A><br>
+<!-- Field WHITE_BALANCE_AUTO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_AUTO" class="hiddenlink" target="rightframe">WHITE_BALANCE_AUTO</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_CLOUDY_DAYLIGHT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_CLOUDY_DAYLIGHT" class="hiddenlink" target="rightframe">WHITE_BALANCE_CLOUDY_DAYLIGHT</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_DAYLIGHT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_DAYLIGHT" class="hiddenlink" target="rightframe">WHITE_BALANCE_DAYLIGHT</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_FLUORESCENT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_FLUORESCENT" class="hiddenlink" target="rightframe">WHITE_BALANCE_FLUORESCENT</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_INCANDESCENT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_INCANDESCENT" class="hiddenlink" target="rightframe">WHITE_BALANCE_INCANDESCENT</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_SHADE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_SHADE" class="hiddenlink" target="rightframe">WHITE_BALANCE_SHADE</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_TWILIGHT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_TWILIGHT" class="hiddenlink" target="rightframe">WHITE_BALANCE_TWILIGHT</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_WARM_FLUORESCENT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_WARM_FLUORESCENT" class="hiddenlink" target="rightframe">WHITE_BALANCE_WARM_FLUORESCENT</A>
+</nobr><br>
+<!-- Field windowShowWallpaper -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowShowWallpaper" class="hiddenlink" target="rightframe">windowShowWallpaper</A>
+</nobr><br>
+<!-- Method writeToParcel -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.writeToParcel_added(android.os.Parcel, int)" class="hiddenlink" target="rightframe"><b>writeToParcel</b>
+(<code>Parcel, int</code>)</A></nobr><br>
+<!-- Field YCbCr_422_I -->
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.graphics.PixelFormat.html#android.graphics.PixelFormat.YCbCr_422_I" class="hiddenlink" target="rightframe">YCbCr_422_I</A>
+</nobr><br>
+<!-- Method yieldIfContendedSafely -->
+<nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.yieldIfContendedSafely_added(long)" class="hiddenlink" target="rightframe"><b>yieldIfContendedSafely</b>
+(<code>long</code>)</A></nobr><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/alldiffs_index_all.html b/docs/html/sdk/api_diff/5/changes/alldiffs_index_all.html
new file mode 100644
index 0000000..75f182e
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/alldiffs_index_all.html
@@ -0,0 +1,3725 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+All Differences Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for All Differences" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<b>All Differences</b>
+ <br>
+<A HREF="alldiffs_index_removals.html" xclass="hiddenlink">Removals</A>
+ <br>
+<A HREF="alldiffs_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<A HREF="alldiffs_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<!-- Field _SYNC_ACCOUNT -->
+<A NAME="_"></A>
+<br><b>underscore</b>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns._SYNC_ACCOUNT" class="hiddenlink" target="rightframe">_SYNC_ACCOUNT</A>
+</nobr><br>
+<!-- Field _SYNC_ACCOUNT_TYPE -->
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns._SYNC_ACCOUNT_TYPE" class="hiddenlink" target="rightframe">_SYNC_ACCOUNT_TYPE</A>
+</nobr><br>
+<!-- Class AbsoluteSizeSpan -->
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>AbsoluteSizeSpan</i><br>
+ <A HREF="android.text.style.AbsoluteSizeSpan.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<!-- Constructor AbsoluteSizeSpan -->
+ <nobr><A HREF="android.text.style.AbsoluteSizeSpan.html#android.text.style.AbsoluteSizeSpan.ctor_added(int, boolean)" class="hiddenlink" target="rightframe"><b>AbsoluteSizeSpan</b>
+(<code>int, boolean</code>)</A></nobr> constructor<br>
+<!-- Class AbstractInputMethodService -->
+<A HREF="android.inputmethodservice.AbstractInputMethodService.html" class="hiddenlink" target="rightframe">AbstractInputMethodService</A><br>
+<!-- Class AbstractOwnableSynchronizer -->
+<A HREF="pkg_java.util.concurrent.locks.html#AbstractOwnableSynchronizer" class="hiddenlink" target="rightframe"><b>AbstractOwnableSynchronizer</b></A><br>
+<!-- Class AbstractThreadedSyncAdapter -->
+<A HREF="pkg_android.content.html#AbstractThreadedSyncAdapter" class="hiddenlink" target="rightframe"><b>AbstractThreadedSyncAdapter</b></A><br>
+<!-- Class AbstractWindowedCursor -->
+<A HREF="android.database.AbstractWindowedCursor.html" class="hiddenlink" target="rightframe">AbstractWindowedCursor</A><br>
+<!-- Field ACCOUNT_MANAGER -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.ACCOUNT_MANAGER" class="hiddenlink" target="rightframe">ACCOUNT_MANAGER</A>
+</nobr><br>
+<!-- Field ACCOUNT_SERVICE -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.ACCOUNT_SERVICE" class="hiddenlink" target="rightframe">ACCOUNT_SERVICE</A>
+</nobr><br>
+<!-- Field accountPreferences -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.accountPreferences" class="hiddenlink" target="rightframe">accountPreferences</A>
+</nobr><br>
+<!-- Field accountType -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.accountType" class="hiddenlink" target="rightframe">accountType</A>
+</nobr><br>
+<!-- Method acquireContentProviderClient -->
+<i>acquireContentProviderClient</i><br>
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.acquireContentProviderClient_added(android.net.Uri)" class="hiddenlink" target="rightframe">type <b>
+(<code>Uri</code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+<!-- Method acquireContentProviderClient -->
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.acquireContentProviderClient_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+<!-- Field ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.ACTION" class="hiddenlink" target="rightframe">ACTION</A>
+</nobr><br>
+<!-- Field ACTION_ACCESSIBILITY_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_ACCESSIBILITY_SETTINGS" class="hiddenlink" target="rightframe">ACTION_ACCESSIBILITY_SETTINGS</A>
+</nobr><br>
+<!-- Field ACTION_DOCK_EVENT -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_DOCK_EVENT" class="hiddenlink" target="rightframe">ACTION_DOCK_EVENT</A>
+</nobr><br>
+<!-- Field ACTION_MASK -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_MASK" class="hiddenlink" target="rightframe">ACTION_MASK</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_1_DOWN -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_1_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_1_DOWN</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_1_UP -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_1_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_1_UP</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_2_DOWN -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_2_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_2_DOWN</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_2_UP -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_2_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_2_UP</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_3_DOWN -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_3_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_3_DOWN</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_3_UP -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_3_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_3_UP</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_DOWN -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_DOWN</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_ID_MASK -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_ID_MASK" class="hiddenlink" target="rightframe">ACTION_POINTER_ID_MASK</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_ID_SHIFT -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_ID_SHIFT" class="hiddenlink" target="rightframe">ACTION_POINTER_ID_SHIFT</A>
+</nobr><br>
+<!-- Field ACTION_POINTER_UP -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_UP</A>
+</nobr><br>
+<!-- Field ACTION_PRIVACY_SETTINGS -->
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_PRIVACY_SETTINGS" class="hiddenlink" target="rightframe">ACTION_PRIVACY_SETTINGS</A>
+</nobr><br>
+<!-- Class Activity -->
+<A HREF="android.app.Activity.html" class="hiddenlink" target="rightframe">Activity</A><br>
+<!-- Class ActivityInfo -->
+<A HREF="android.content.pm.ActivityInfo.html" class="hiddenlink" target="rightframe">ActivityInfo</A><br>
+<!-- Class ActivityManager -->
+<A HREF="android.app.ActivityManager.html" class="hiddenlink" target="rightframe">ActivityManager</A><br>
+<!-- Class ActivityManager.RunningAppProcessInfo -->
+<A HREF="android.app.ActivityManager.RunningAppProcessInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningAppProcessInfo</A><br>
+<!-- Class ActivityManager.RunningServiceInfo -->
+<A HREF="android.app.ActivityManager.RunningServiceInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningServiceInfo</A><br>
+<!-- Method addNmeaListener -->
+<nobr><A HREF="android.location.LocationManager.html#android.location.LocationManager.addNmeaListener_added(android.location.GpsStatus.NmeaListener)" class="hiddenlink" target="rightframe"><b>addNmeaListener</b>
+(<code>NmeaListener</code>)</A></nobr><br>
+<!-- Method addPlugin -->
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.addPlugin_changed(android.webkit.Plugin)" class="hiddenlink" target="rightframe">addPlugin
+(<code>Plugin</code>)</A></nobr><br>
+<!-- Method addPostalLocation -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.addPostalLocation_changed(android.content.Context, long, double, double)" class="hiddenlink" target="rightframe">addPostalLocation
+(<code>Context, long, double, double</code>)</A></nobr><br>
+<!-- Method addStatusChangeListener -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.addStatusChangeListener_added(int, android.content.SyncStatusObserver)" class="hiddenlink" target="rightframe"><b>addStatusChangeListener</b>
+(<code>int, SyncStatusObserver</code>)</A></nobr><br>
+<!-- Method addToGroup -->
+<i>addToGroup</i><br>
+ <nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.addToGroup_changed(android.content.ContentResolver, long, java.lang.String)" class="hiddenlink" target="rightframe">type
+(<code>ContentResolver, long, String</code>) in android.provider.Contacts.People
+</A></nobr><br>
+<!-- Method addToGroup -->
+ <nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.addToGroup_changed(android.content.ContentResolver, long, long)" class="hiddenlink" target="rightframe">type
+(<code>ContentResolver, long, long</code>) in android.provider.Contacts.People
+</A></nobr><br>
+<!-- Method addToMyContactsGroup -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.addToMyContactsGroup_changed(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe">addToMyContactsGroup
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<!-- Field ALARM_ALERT -->
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.ALARM_ALERT" class="hiddenlink" target="rightframe">ALARM_ALERT</A>
+</nobr><br>
+<!-- Class AllocationLimitError -->
+<A HREF="dalvik.system.AllocationLimitError.html" class="hiddenlink" target="rightframe">AllocationLimitError</A><br>
+<!-- Package android -->
+<A HREF="pkg_android.html" class="hiddenlink" target="rightframe">android</A><br>
+<!-- Package android.accounts -->
+<A HREF="changes-summary.html#android.accounts" class="hiddenlink" target="rightframe"><b>android.accounts</b></A><br>
+<!-- Package android.app -->
+<A HREF="pkg_android.app.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<!-- Package android.bluetooth -->
+<A HREF="changes-summary.html#android.bluetooth" class="hiddenlink" target="rightframe"><b>android.bluetooth</b></A><br>
+<!-- Package android.content -->
+<A HREF="pkg_android.content.html" class="hiddenlink" target="rightframe">android.content</A><br>
+<!-- Package android.content.pm -->
+<A HREF="pkg_android.content.pm.html" class="hiddenlink" target="rightframe">android.content.pm</A><br>
+<!-- Package android.content.res -->
+<A HREF="pkg_android.content.res.html" class="hiddenlink" target="rightframe">android.content.res</A><br>
+<!-- Package android.database -->
+<A HREF="pkg_android.database.html" class="hiddenlink" target="rightframe">android.database</A><br>
+<!-- Package android.database.sqlite -->
+<A HREF="pkg_android.database.sqlite.html" class="hiddenlink" target="rightframe">android.database.sqlite</A><br>
+<!-- Package android.graphics -->
+<A HREF="pkg_android.graphics.html" class="hiddenlink" target="rightframe">android.graphics</A><br>
+<!-- Package android.graphics.drawable -->
+<A HREF="pkg_android.graphics.drawable.html" class="hiddenlink" target="rightframe">android.graphics.drawable</A><br>
+<!-- Package android.hardware -->
+<A HREF="pkg_android.hardware.html" class="hiddenlink" target="rightframe">android.hardware</A><br>
+<!-- Package android.inputmethodservice -->
+<A HREF="pkg_android.inputmethodservice.html" class="hiddenlink" target="rightframe">android.inputmethodservice</A><br>
+<!-- Package android.location -->
+<A HREF="pkg_android.location.html" class="hiddenlink" target="rightframe">android.location</A><br>
+<!-- Package android.media -->
+<A HREF="pkg_android.media.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<!-- Package android.opengl -->
+<A HREF="pkg_android.opengl.html" class="hiddenlink" target="rightframe">android.opengl</A><br>
+<!-- Package android.os -->
+<A HREF="pkg_android.os.html" class="hiddenlink" target="rightframe">android.os</A><br>
+<!-- Package android.provider -->
+<A HREF="pkg_android.provider.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<!-- Package android.telephony -->
+<A HREF="pkg_android.telephony.html" class="hiddenlink" target="rightframe">android.telephony</A><br>
+<!-- Package android.telephony.cdma -->
+<A HREF="changes-summary.html#android.telephony.cdma" class="hiddenlink" target="rightframe"><b>android.telephony.cdma</b></A><br>
+<!-- Package android.test -->
+<A HREF="pkg_android.test.html" class="hiddenlink" target="rightframe">android.test</A><br>
+<!-- Package android.test.mock -->
+<A HREF="pkg_android.test.mock.html" class="hiddenlink" target="rightframe">android.test.mock</A><br>
+<!-- Package android.text -->
+<A HREF="pkg_android.text.html" class="hiddenlink" target="rightframe">android.text</A><br>
+<!-- Package android.text.format -->
+<A HREF="pkg_android.text.format.html" class="hiddenlink" target="rightframe">android.text.format</A><br>
+<!-- Package android.text.style -->
+<A HREF="pkg_android.text.style.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<!-- Package android.util -->
+<A HREF="pkg_android.util.html" class="hiddenlink" target="rightframe">android.util</A><br>
+<!-- Package android.view -->
+<A HREF="pkg_android.view.html" class="hiddenlink" target="rightframe">android.view</A><br>
+<!-- Package android.view.animation -->
+<A HREF="pkg_android.view.animation.html" class="hiddenlink" target="rightframe">android.view.animation</A><br>
+<!-- Package android.webkit -->
+<A HREF="pkg_android.webkit.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<!-- Package android.widget -->
+<A HREF="pkg_android.widget.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Class AndroidTestRunner -->
+<A HREF="android.test.AndroidTestRunner.html" class="hiddenlink" target="rightframe">AndroidTestRunner</A><br>
+<!-- Class Animation -->
+<A HREF="android.view.animation.Animation.html" class="hiddenlink" target="rightframe">Animation</A><br>
+<!-- Field Animation_InputMethod -->
+<nobr><A HREF="android.R.style.html#android.R.style.Animation_InputMethod" class="hiddenlink" target="rightframe">Animation_InputMethod</A>
+</nobr><br>
+<!-- Field ANTIBANDING_50HZ -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_50HZ" class="hiddenlink" target="rightframe">ANTIBANDING_50HZ</A>
+</nobr><br>
+<!-- Field ANTIBANDING_60HZ -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_60HZ" class="hiddenlink" target="rightframe">ANTIBANDING_60HZ</A>
+</nobr><br>
+<!-- Field ANTIBANDING_AUTO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_AUTO" class="hiddenlink" target="rightframe">ANTIBANDING_AUTO</A>
+</nobr><br>
+<!-- Field ANTIBANDING_OFF -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_OFF" class="hiddenlink" target="rightframe">ANTIBANDING_OFF</A>
+</nobr><br>
+<!-- Method applyBatch -->
+<i>applyBatch</i><br>
+ <nobr><A HREF="android.content.ContentProvider.html#android.content.ContentProvider.applyBatch_added(java.util.ArrayList<android.content.ContentProviderOperation>)" class="hiddenlink" target="rightframe">type <b>
+(<code>ArrayList<ContentProviderOperation></code>)</b> in android.content.ContentProvider
+</A></nobr><br>
+<!-- Method applyBatch -->
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.applyBatch_added(java.lang.String, java.util.ArrayList<android.content.ContentProviderOperation>)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, ArrayList<ContentProviderOperation></code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+<!-- Field ATTACH_IMAGE -->
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.ATTACH_IMAGE" class="hiddenlink" target="rightframe">ATTACH_IMAGE</A>
+</nobr><br>
+<!-- Class AudioFormat -->
+<A HREF="android.media.AudioFormat.html" class="hiddenlink" target="rightframe">AudioFormat</A><br>
+<!-- Class AudioManager -->
+<A HREF="android.media.AudioManager.html" class="hiddenlink" target="rightframe">AudioManager</A><br>
+<!-- Field AUTHENTICATE_ACCOUNTS -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.AUTHENTICATE_ACCOUNTS" class="hiddenlink" target="rightframe">AUTHENTICATE_ACCOUNTS</A>
+</nobr><br>
+<!-- Field AUTHORITY -->
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.AUTHORITY" class="hiddenlink" target="rightframe">AUTHORITY</A>
+</nobr><br>
+<!-- Class AutoCompleteTextView -->
+<A HREF="android.widget.AutoCompleteTextView.html" class="hiddenlink" target="rightframe">AutoCompleteTextView</A><br>
+<!-- Field AUX_DATA -->
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.AUX_DATA" class="hiddenlink" target="rightframe">AUX_DATA</A>
+</nobr><br>
+<!-- Method awakenScrollBars -->
+<i>awakenScrollBars</i><br>
+ <nobr><A HREF="android.view.View.html#android.view.View.awakenScrollBars_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.View
+</A></nobr><br>
+<!-- Method awakenScrollBars -->
+ <nobr><A HREF="android.view.View.html#android.view.View.awakenScrollBars_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.view.View
+</A></nobr><br>
+<!-- Method awakenScrollBars -->
+ <nobr><A HREF="android.view.View.html#android.view.View.awakenScrollBars_added(int, boolean)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, boolean</code>)</b> in android.view.View
+</A></nobr><br>
+<!-- Class BatteryManager -->
+<A NAME="B"></A>
+<br><font size="+2">B</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.os.BatteryManager.html" class="hiddenlink" target="rightframe">BatteryManager</A><br>
+<!-- Method beginTransactionWithListener -->
+<nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.beginTransactionWithListener_added(android.database.sqlite.SQLiteTransactionListener)" class="hiddenlink" target="rightframe"><b>beginTransactionWithListener</b>
+(<code>SQLiteTransactionListener</code>)</A></nobr><br>
+<!-- Class BitmapDrawable -->
+<i>BitmapDrawable</i><br>
+ <A HREF="android.graphics.drawable.BitmapDrawable.html" class="hiddenlink" target="rightframe">android.graphics.drawable</A><br>
+<!-- Constructor BitmapDrawable -->
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_removed()" class="hiddenlink" target="rightframe"><strike>BitmapDrawable</strike>
+()</A></nobr> constructor<br>
+<!-- Constructor BitmapDrawable -->
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_removed(android.graphics.Bitmap)" class="hiddenlink" target="rightframe"><strike>BitmapDrawable</strike>
+(<code>Bitmap</code>)</A></nobr> constructor<br>
+<!-- Constructor BitmapDrawable -->
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources)" class="hiddenlink" target="rightframe"><b>BitmapDrawable</b>
+(<code>Resources</code>)</A></nobr> constructor<br>
+<!-- Constructor BitmapDrawable -->
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources, java.lang.String)" class="hiddenlink" target="rightframe"><b>BitmapDrawable</b>
+(<code>Resources, String</code>)</A></nobr> constructor<br>
+<!-- Constructor BitmapDrawable -->
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources, java.io.InputStream)" class="hiddenlink" target="rightframe"><b>BitmapDrawable</b>
+(<code>Resources, InputStream</code>)</A></nobr> constructor<br>
+<!-- Constructor BitmapDrawable -->
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_changed(java.io.InputStream)" class="hiddenlink" target="rightframe">BitmapDrawable
+(<code>InputStream</code>)</A></nobr> constructor<br>
+<!-- Constructor BitmapDrawable -->
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_changed(java.lang.String)" class="hiddenlink" target="rightframe">BitmapDrawable
+(<code>String</code>)</A></nobr> constructor<br>
+<!-- Class BlockingQueue -->
+<A HREF="java.util.concurrent.BlockingQueue.html" class="hiddenlink" target="rightframe"><i>BlockingQueue</i></A><br>
+<!-- Class BroadcastReceiver -->
+<A HREF="android.content.BroadcastReceiver.html" class="hiddenlink" target="rightframe">BroadcastReceiver</A><br>
+<!-- Class Build.VERSION_CODES -->
+<A HREF="android.os.Build.VERSION_CODES.html" class="hiddenlink" target="rightframe">Build.VERSION_CODES</A><br>
+<!-- Class CallbackProxy -->
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.webkit.CallbackProxy.html" class="hiddenlink" target="rightframe">CallbackProxy</A><br>
+<!-- Class Camera -->
+<A HREF="android.hardware.Camera.html" class="hiddenlink" target="rightframe">Camera</A><br>
+<!-- Class Camera.Parameters -->
+<A HREF="android.hardware.Camera.Parameters.html" class="hiddenlink" target="rightframe">Camera.Parameters</A><br>
+<!-- Method cancel -->
+<nobr><A HREF="android.app.NotificationManager.html#android.app.NotificationManager.cancel_added(java.lang.String, int)" class="hiddenlink" target="rightframe"><b>cancel</b>
+(<code>String, int</code>)</A></nobr><br>
+<!-- Method cancelAutoFocus -->
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.cancelAutoFocus_added()" class="hiddenlink" target="rightframe"><b>cancelAutoFocus</b>
+()</A></nobr><br>
+<!-- Method cancelSync -->
+<i>cancelSync</i><br>
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.cancelSync_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>Account, String</code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+<!-- Method cancelSync -->
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.cancelSync_changed(android.net.Uri)" class="hiddenlink" target="rightframe">type
+(<code>Uri</code>) in android.content.ContentResolver
+</A></nobr><br>
+<!-- Method cancelThumbnailRequest -->
+<nobr><A HREF="android.provider.MediaStore.Images.Thumbnails.html#android.provider.MediaStore.Images.Thumbnails.cancelThumbnailRequest_added(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe"><b>cancelThumbnailRequest</b>
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<!-- Method canPause -->
+<i>canPause</i><br>
+ <nobr><A HREF="android.widget.MediaController.MediaPlayerControl.html#android.widget.MediaController.MediaPlayerControl.canPause_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.MediaController.MediaPlayerControl
+</A></nobr><br>
+<!-- Method canPause -->
+ <nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.canPause_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.VideoView
+</A></nobr><br>
+<!-- Method canSeekBackward -->
+<i>canSeekBackward</i><br>
+ <nobr><A HREF="android.widget.MediaController.MediaPlayerControl.html#android.widget.MediaController.MediaPlayerControl.canSeekBackward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.MediaController.MediaPlayerControl
+</A></nobr><br>
+<!-- Method canSeekBackward -->
+ <nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.canSeekBackward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.VideoView
+</A></nobr><br>
+<!-- Method canSeekForward -->
+<i>canSeekForward</i><br>
+ <nobr><A HREF="android.widget.MediaController.MediaPlayerControl.html#android.widget.MediaController.MediaPlayerControl.canSeekForward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.MediaController.MediaPlayerControl
+</A></nobr><br>
+<!-- Method canSeekForward -->
+ <nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.canSeekForward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.VideoView
+</A></nobr><br>
+<!-- Field CATEGORY_CAR_DOCK -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_CAR_DOCK" class="hiddenlink" target="rightframe">CATEGORY_CAR_DOCK</A>
+</nobr><br>
+<!-- Field CATEGORY_DESK_DOCK -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_DESK_DOCK" class="hiddenlink" target="rightframe">CATEGORY_DESK_DOCK</A>
+</nobr><br>
+<!-- Method changeTimeRepeat -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.changeTimeRepeat_added(android.view.KeyEvent, long, int, int)" class="hiddenlink" target="rightframe"><b>changeTimeRepeat</b>
+(<code>KeyEvent, long, int, int</code>)</A></nobr><br>
+<!-- Field CHANNEL_CONFIGURATION_DEFAULT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_DEFAULT" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_DEFAULT</A>
+</nobr><br>
+<!-- Field CHANNEL_CONFIGURATION_INVALID -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_INVALID" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_INVALID</A>
+</nobr><br>
+<!-- Field CHANNEL_CONFIGURATION_MONO -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_MONO" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_MONO</A>
+</nobr><br>
+<!-- Field CHANNEL_CONFIGURATION_STEREO -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_STEREO" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_STEREO</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_BACK -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_BACK" class="hiddenlink" target="rightframe">CHANNEL_IN_BACK</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_BACK_PROCESSED -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_BACK_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_BACK_PROCESSED</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_DEFAULT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_DEFAULT" class="hiddenlink" target="rightframe">CHANNEL_IN_DEFAULT</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_FRONT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_FRONT" class="hiddenlink" target="rightframe">CHANNEL_IN_FRONT</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_FRONT_PROCESSED -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_FRONT_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_FRONT_PROCESSED</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_LEFT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_LEFT" class="hiddenlink" target="rightframe">CHANNEL_IN_LEFT</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_LEFT_PROCESSED -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_LEFT_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_LEFT_PROCESSED</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_MONO -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_MONO" class="hiddenlink" target="rightframe">CHANNEL_IN_MONO</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_PRESSURE -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_PRESSURE" class="hiddenlink" target="rightframe">CHANNEL_IN_PRESSURE</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_RIGHT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_IN_RIGHT</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_RIGHT_PROCESSED -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_RIGHT_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_RIGHT_PROCESSED</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_STEREO -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_STEREO" class="hiddenlink" target="rightframe">CHANNEL_IN_STEREO</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_VOICE_DNLINK -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_VOICE_DNLINK" class="hiddenlink" target="rightframe">CHANNEL_IN_VOICE_DNLINK</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_VOICE_UPLINK -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_VOICE_UPLINK" class="hiddenlink" target="rightframe">CHANNEL_IN_VOICE_UPLINK</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_X_AXIS -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_X_AXIS" class="hiddenlink" target="rightframe">CHANNEL_IN_X_AXIS</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_Y_AXIS -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_Y_AXIS" class="hiddenlink" target="rightframe">CHANNEL_IN_Y_AXIS</A>
+</nobr><br>
+<!-- Field CHANNEL_IN_Z_AXIS -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_Z_AXIS" class="hiddenlink" target="rightframe">CHANNEL_IN_Z_AXIS</A>
+</nobr><br>
+<!-- Field CHANNEL_INVALID -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_INVALID" class="hiddenlink" target="rightframe">CHANNEL_INVALID</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_5POINT1 -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_5POINT1" class="hiddenlink" target="rightframe">CHANNEL_OUT_5POINT1</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_7POINT1 -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_7POINT1" class="hiddenlink" target="rightframe">CHANNEL_OUT_7POINT1</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_BACK_CENTER -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_BACK_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_BACK_CENTER</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_BACK_LEFT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_BACK_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_BACK_LEFT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_BACK_RIGHT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_BACK_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_BACK_RIGHT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_DEFAULT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_DEFAULT" class="hiddenlink" target="rightframe">CHANNEL_OUT_DEFAULT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_FRONT_CENTER -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_CENTER</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_FRONT_LEFT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_LEFT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_FRONT_LEFT_OF_CENTER -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_LEFT_OF_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_LEFT_OF_CENTER</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_FRONT_RIGHT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_RIGHT</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_FRONT_RIGHT_OF_CENTER -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_RIGHT_OF_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_RIGHT_OF_CENTER</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_LOW_FREQUENCY -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_LOW_FREQUENCY" class="hiddenlink" target="rightframe">CHANNEL_OUT_LOW_FREQUENCY</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_MONO -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_MONO" class="hiddenlink" target="rightframe">CHANNEL_OUT_MONO</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_QUAD -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_QUAD" class="hiddenlink" target="rightframe">CHANNEL_OUT_QUAD</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_STEREO -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_STEREO" class="hiddenlink" target="rightframe">CHANNEL_OUT_STEREO</A>
+</nobr><br>
+<!-- Field CHANNEL_OUT_SURROUND -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SURROUND" class="hiddenlink" target="rightframe">CHANNEL_OUT_SURROUND</A>
+</nobr><br>
+<!-- Method checkSignatures -->
+<i>checkSignatures</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.checkSignatures_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method checkSignatures -->
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.checkSignatures_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method clear -->
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.clear_changed()" class="hiddenlink" target="rightframe">clear
+()</A></nobr><br>
+<!-- Method clearWallpaper -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.clearWallpaper_changed()" class="hiddenlink" target="rightframe">clearWallpaper
+()</A></nobr><br>
+<!-- Field clientLabel -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.clientLabel" class="hiddenlink" target="rightframe">clientLabel</A>
+</nobr><br>
+<!-- Field clientPackage -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.clientPackage" class="hiddenlink" target="rightframe">clientPackage</A>
+</nobr><br>
+<!-- Field colorBackgroundCacheHint -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorBackgroundCacheHint" class="hiddenlink" target="rightframe">colorBackgroundCacheHint</A>
+</nobr><br>
+<!-- Field COMPANY -->
+<i>COMPANY</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.COMPANY" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+<!-- Field COMPANY -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.COMPANY" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Method compare -->
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.compare_added(android.content.Context, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>compare</b>
+(<code>Context, String, String</code>)</A></nobr><br>
+<!-- Class Configuration -->
+<A HREF="android.content.res.Configuration.html" class="hiddenlink" target="rightframe">Configuration</A><br>
+<!-- Class Contacts -->
+<A HREF="android.provider.Contacts.html" class="hiddenlink" target="rightframe">Contacts</A><br>
+<!-- Class Contacts.ContactMethods -->
+<A HREF="android.provider.Contacts.ContactMethods.html" class="hiddenlink" target="rightframe">Contacts.ContactMethods</A><br>
+<!-- Class Contacts.ContactMethodsColumns -->
+<A HREF="android.provider.Contacts.ContactMethodsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.ContactMethodsColumns</i></A><br>
+<!-- Class Contacts.Extensions -->
+<A HREF="android.provider.Contacts.Extensions.html" class="hiddenlink" target="rightframe">Contacts.Extensions</A><br>
+<!-- Class Contacts.ExtensionsColumns -->
+<A HREF="android.provider.Contacts.ExtensionsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.ExtensionsColumns</i></A><br>
+<!-- Class Contacts.GroupMembership -->
+<A HREF="android.provider.Contacts.GroupMembership.html" class="hiddenlink" target="rightframe">Contacts.GroupMembership</A><br>
+<!-- Class Contacts.Groups -->
+<A HREF="android.provider.Contacts.Groups.html" class="hiddenlink" target="rightframe">Contacts.Groups</A><br>
+<!-- Class Contacts.GroupsColumns -->
+<A HREF="android.provider.Contacts.GroupsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.GroupsColumns</i></A><br>
+<!-- Class Contacts.Intents -->
+<i>Contacts.Intents</i><br>
+ <A HREF="android.provider.Contacts.Intents.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<!-- Constructor Contacts.Intents -->
+ <nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.ctor_changed()" class="hiddenlink" target="rightframe">Contacts.Intents
+()</A></nobr> constructor<br>
+<!-- Class Contacts.Intents.Insert -->
+<i>Contacts.Intents.Insert</i><br>
+ <A HREF="android.provider.Contacts.Intents.Insert.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<!-- Constructor Contacts.Intents.Insert -->
+ <nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.ctor_changed()" class="hiddenlink" target="rightframe">Contacts.Intents.Insert
+()</A></nobr> constructor<br>
+<!-- Class Contacts.Intents.UI -->
+<i>Contacts.Intents.UI</i><br>
+ <A HREF="android.provider.Contacts.Intents.UI.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<!-- Constructor Contacts.Intents.UI -->
+ <nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.ctor_changed()" class="hiddenlink" target="rightframe">Contacts.Intents.UI
+()</A></nobr> constructor<br>
+<!-- Class Contacts.OrganizationColumns -->
+<A HREF="android.provider.Contacts.OrganizationColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.OrganizationColumns</i></A><br>
+<!-- Class Contacts.Organizations -->
+<A HREF="android.provider.Contacts.Organizations.html" class="hiddenlink" target="rightframe">Contacts.Organizations</A><br>
+<!-- Class Contacts.People -->
+<A HREF="android.provider.Contacts.People.html" class="hiddenlink" target="rightframe">Contacts.People</A><br>
+<!-- Class Contacts.People.ContactMethods -->
+<A HREF="android.provider.Contacts.People.ContactMethods.html" class="hiddenlink" target="rightframe">Contacts.People.ContactMethods</A><br>
+<!-- Class Contacts.People.Extensions -->
+<A HREF="android.provider.Contacts.People.Extensions.html" class="hiddenlink" target="rightframe">Contacts.People.Extensions</A><br>
+<!-- Class Contacts.People.Phones -->
+<A HREF="android.provider.Contacts.People.Phones.html" class="hiddenlink" target="rightframe">Contacts.People.Phones</A><br>
+<!-- Class Contacts.PeopleColumns -->
+<A HREF="android.provider.Contacts.PeopleColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PeopleColumns</i></A><br>
+<!-- Class Contacts.Phones -->
+<A HREF="android.provider.Contacts.Phones.html" class="hiddenlink" target="rightframe">Contacts.Phones</A><br>
+<!-- Class Contacts.PhonesColumns -->
+<A HREF="android.provider.Contacts.PhonesColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PhonesColumns</i></A><br>
+<!-- Class Contacts.Photos -->
+<A HREF="android.provider.Contacts.Photos.html" class="hiddenlink" target="rightframe">Contacts.Photos</A><br>
+<!-- Class Contacts.PhotosColumns -->
+<A HREF="android.provider.Contacts.PhotosColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PhotosColumns</i></A><br>
+<!-- Class Contacts.PresenceColumns -->
+<A HREF="android.provider.Contacts.PresenceColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PresenceColumns</i></A><br>
+<!-- Class Contacts.Settings -->
+<A HREF="android.provider.Contacts.Settings.html" class="hiddenlink" target="rightframe">Contacts.Settings</A><br>
+<!-- Class Contacts.SettingsColumns -->
+<A HREF="android.provider.Contacts.SettingsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.SettingsColumns</i></A><br>
+<!-- Class ContactsContract -->
+<A HREF="pkg_android.provider.html#ContactsContract" class="hiddenlink" target="rightframe"><b>ContactsContract</b></A><br>
+<!-- Class ContactsContract.AggregationExceptions -->
+<A HREF="pkg_android.provider.html#ContactsContract.AggregationExceptions" class="hiddenlink" target="rightframe"><b>ContactsContract.AggregationExceptions</b></A><br>
+<!-- Class ContactsContract.BaseSyncColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.BaseSyncColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.BaseSyncColumns</i></b></A><br>
+<!-- Class ContactsContract.CommonDataKinds -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.BaseTypes -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.BaseTypes" class="hiddenlink" target="rightframe"><b><i>ContactsContract.CommonDataKinds.BaseTypes</i></b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.CommonColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.CommonColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.CommonDataKinds.CommonColumns</i></b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Email -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Email" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Email</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Event -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Event" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Event</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.GroupMembership -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.GroupMembership" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.GroupMembership</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Im -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Im" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Im</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Nickname -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Nickname" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Nickname</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Note -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Note" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Note</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Organization -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Organization" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Organization</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Phone -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Phone" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Phone</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Photo -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Photo" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Photo</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Relation -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Relation" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Relation</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.StructuredName -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.StructuredName" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.StructuredName</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.StructuredPostal -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.StructuredPostal" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.StructuredPostal</b></A><br>
+<!-- Class ContactsContract.CommonDataKinds.Website -->
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Website" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Website</b></A><br>
+<!-- Class ContactsContract.ContactOptionsColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.ContactOptionsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.ContactOptionsColumns</i></b></A><br>
+<!-- Class ContactsContract.Contacts -->
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts</b></A><br>
+<!-- Class ContactsContract.Contacts.AggregationSuggestions -->
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts.AggregationSuggestions" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts.AggregationSuggestions</b></A><br>
+<!-- Class ContactsContract.Contacts.Data -->
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts.Data" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts.Data</b></A><br>
+<!-- Class ContactsContract.Contacts.Photo -->
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts.Photo" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts.Photo</b></A><br>
+<!-- Class ContactsContract.ContactsColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.ContactsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.ContactsColumns</i></b></A><br>
+<!-- Class ContactsContract.ContactStatusColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.ContactStatusColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.ContactStatusColumns</i></b></A><br>
+<!-- Class ContactsContract.Data -->
+<A HREF="pkg_android.provider.html#ContactsContract.Data" class="hiddenlink" target="rightframe"><b>ContactsContract.Data</b></A><br>
+<!-- Class ContactsContract.DataColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.DataColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.DataColumns</i></b></A><br>
+<!-- Class ContactsContract.DataColumnsWithJoins -->
+<A HREF="pkg_android.provider.html#ContactsContract.DataColumnsWithJoins" class="hiddenlink" target="rightframe"><b><i>ContactsContract.DataColumnsWithJoins</i></b></A><br>
+<!-- Class ContactsContract.Groups -->
+<A HREF="pkg_android.provider.html#ContactsContract.Groups" class="hiddenlink" target="rightframe"><b>ContactsContract.Groups</b></A><br>
+<!-- Class ContactsContract.GroupsColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.GroupsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.GroupsColumns</i></b></A><br>
+<!-- Class ContactsContract.Intents -->
+<A HREF="pkg_android.provider.html#ContactsContract.Intents" class="hiddenlink" target="rightframe"><b>ContactsContract.Intents</b></A><br>
+<!-- Class ContactsContract.Intents.Insert -->
+<A HREF="pkg_android.provider.html#ContactsContract.Intents.Insert" class="hiddenlink" target="rightframe"><b>ContactsContract.Intents.Insert</b></A><br>
+<!-- Class ContactsContract.PhoneLookup -->
+<A HREF="pkg_android.provider.html#ContactsContract.PhoneLookup" class="hiddenlink" target="rightframe"><b>ContactsContract.PhoneLookup</b></A><br>
+<!-- Class ContactsContract.PhoneLookupColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.PhoneLookupColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.PhoneLookupColumns</i></b></A><br>
+<!-- Class ContactsContract.Presence -->
+<A HREF="pkg_android.provider.html#ContactsContract.Presence" class="hiddenlink" target="rightframe"><b>ContactsContract.Presence</b></A><br>
+<!-- Class ContactsContract.PresenceColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.PresenceColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.PresenceColumns</i></b></A><br>
+<!-- Class ContactsContract.QuickContact -->
+<A HREF="pkg_android.provider.html#ContactsContract.QuickContact" class="hiddenlink" target="rightframe"><b>ContactsContract.QuickContact</b></A><br>
+<!-- Class ContactsContract.RawContacts -->
+<A HREF="pkg_android.provider.html#ContactsContract.RawContacts" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContacts</b></A><br>
+<!-- Class ContactsContract.RawContacts.Data -->
+<A HREF="pkg_android.provider.html#ContactsContract.RawContacts.Data" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContacts.Data</b></A><br>
+<!-- Class ContactsContract.RawContacts.Entity -->
+<A HREF="pkg_android.provider.html#ContactsContract.RawContacts.Entity" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContacts.Entity</b></A><br>
+<!-- Class ContactsContract.RawContactsColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.RawContactsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.RawContactsColumns</i></b></A><br>
+<!-- Class ContactsContract.RawContactsEntity -->
+<A HREF="pkg_android.provider.html#ContactsContract.RawContactsEntity" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContactsEntity</b></A><br>
+<!-- Class ContactsContract.Settings -->
+<A HREF="pkg_android.provider.html#ContactsContract.Settings" class="hiddenlink" target="rightframe"><b>ContactsContract.Settings</b></A><br>
+<!-- Class ContactsContract.SettingsColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.SettingsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.SettingsColumns</i></b></A><br>
+<!-- Class ContactsContract.StatusColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.StatusColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.StatusColumns</i></b></A><br>
+<!-- Class ContactsContract.StatusUpdates -->
+<A HREF="pkg_android.provider.html#ContactsContract.StatusUpdates" class="hiddenlink" target="rightframe"><b>ContactsContract.StatusUpdates</b></A><br>
+<!-- Class ContactsContract.SyncColumns -->
+<A HREF="pkg_android.provider.html#ContactsContract.SyncColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.SyncColumns</i></b></A><br>
+<!-- Class ContactsContract.SyncState -->
+<A HREF="pkg_android.provider.html#ContactsContract.SyncState" class="hiddenlink" target="rightframe"><b>ContactsContract.SyncState</b></A><br>
+<!-- Method contains -->
+<nobr><A HREF="java.util.concurrent.BlockingQueue.html#java.util.concurrent.BlockingQueue.contains_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>contains</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+<i>CONTENT_DIRECTORY</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+ in
+<nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.Organizations</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.ContactMethods.html#android.provider.Contacts.People.ContactMethods.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.People.ContactMethods</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.Extensions.html#android.provider.Contacts.People.Extensions.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Extensions</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.Phones.html#android.provider.Contacts.People.Phones.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Phones</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+ in
+<nobr><A HREF="android.provider.Contacts.Photos.html#android.provider.Contacts.Photos.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.Photos</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+ in
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.Settings</A>
+</nobr><br>
+<!-- Field CONTENT_EMAIL_ITEM_TYPE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_EMAIL_ITEM_TYPE" class="hiddenlink" target="rightframe">CONTENT_EMAIL_ITEM_TYPE</A>
+</nobr><br>
+<!-- Field CONTENT_EMAIL_TYPE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_EMAIL_TYPE" class="hiddenlink" target="rightframe">CONTENT_EMAIL_TYPE</A>
+</nobr><br>
+<!-- Field CONTENT_EMAIL_URI -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_EMAIL_URI" class="hiddenlink" target="rightframe">CONTENT_EMAIL_URI</A>
+</nobr><br>
+<!-- Field CONTENT_FILTER_URI -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_FILTER_URI" class="hiddenlink" target="rightframe">CONTENT_FILTER_URI</A>
+</nobr><br>
+<!-- Field CONTENT_FILTER_URL -->
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_FILTER_URL" class="hiddenlink" target="rightframe">CONTENT_FILTER_URL</A>
+</nobr><br>
+<!-- Field CONTENT_IM_ITEM_TYPE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_IM_ITEM_TYPE" class="hiddenlink" target="rightframe">CONTENT_IM_ITEM_TYPE</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+<i>CONTENT_ITEM_TYPE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<!-- Field CONTENT_POSTAL_ITEM_TYPE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_POSTAL_ITEM_TYPE" class="hiddenlink" target="rightframe">CONTENT_POSTAL_ITEM_TYPE</A>
+</nobr><br>
+<!-- Field CONTENT_POSTAL_TYPE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_POSTAL_TYPE" class="hiddenlink" target="rightframe">CONTENT_POSTAL_TYPE</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+<i>CONTENT_TYPE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+<i>CONTENT_URI</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Organizations</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.Photos.html#android.provider.Contacts.Photos.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Photos</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Settings</A>
+</nobr><br>
+<!-- Field contentAuthority -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentAuthority" class="hiddenlink" target="rightframe">contentAuthority</A>
+</nobr><br>
+<!-- Class ContentProvider -->
+<A HREF="android.content.ContentProvider.html" class="hiddenlink" target="rightframe">ContentProvider</A><br>
+<!-- Class ContentProviderClient -->
+<A HREF="pkg_android.content.html#ContentProviderClient" class="hiddenlink" target="rightframe"><b>ContentProviderClient</b></A><br>
+<!-- Class ContentProviderOperation -->
+<A HREF="pkg_android.content.html#ContentProviderOperation" class="hiddenlink" target="rightframe"><b>ContentProviderOperation</b></A><br>
+<!-- Class ContentProviderOperation.Builder -->
+<A HREF="pkg_android.content.html#ContentProviderOperation.Builder" class="hiddenlink" target="rightframe"><b>ContentProviderOperation.Builder</b></A><br>
+<!-- Class ContentProviderResult -->
+<A HREF="pkg_android.content.html#ContentProviderResult" class="hiddenlink" target="rightframe"><b>ContentProviderResult</b></A><br>
+<!-- Class ContentResolver -->
+<A HREF="android.content.ContentResolver.html" class="hiddenlink" target="rightframe">ContentResolver</A><br>
+<!-- Class Context -->
+<A HREF="android.content.Context.html" class="hiddenlink" target="rightframe">Context</A><br>
+<!-- Class ContextWrapper -->
+<A HREF="android.content.ContextWrapper.html" class="hiddenlink" target="rightframe">ContextWrapper</A><br>
+<!-- Method createFromResourceStream -->
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromResourceStream_added(android.content.res.Resources, android.util.TypedValue, java.io.InputStream, java.lang.String, android.graphics.BitmapFactory.Options)" class="hiddenlink" target="rightframe"><b>createFromResourceStream</b>
+(<code>Resources, TypedValue, InputStream, String, Options</code>)</A></nobr><br>
+<!-- Method createPersonInMyContactsGroup -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.createPersonInMyContactsGroup_changed(android.content.ContentResolver, android.content.ContentValues)" class="hiddenlink" target="rightframe">createPersonInMyContactsGroup
+(<code>ContentResolver, ContentValues</code>)</A></nobr><br>
+<!-- Field CREATOR -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.CREATOR" class="hiddenlink" target="rightframe">CREATOR</A>
+</nobr><br>
+<!-- Class CursorWindow -->
+<A HREF="android.database.CursorWindow.html" class="hiddenlink" target="rightframe">CursorWindow</A><br>
+<!-- Field CUSTOM_RINGTONE -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.CUSTOM_RINGTONE" class="hiddenlink" target="rightframe">CUSTOM_RINGTONE</A>
+</nobr><br>
+<!-- Package dalvik.system -->
+<A NAME="D"></A>
+<A HREF="pkg_dalvik.system.html" class="hiddenlink" target="rightframe">dalvik.system</A><br>
+<!-- Field DATA -->
+<i>DATA</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.DATA" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field DATA -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.DATA" class="hiddenlink" target="rightframe">android.provider.Contacts.PhotosColumns</A>
+</nobr><br>
+<!-- Field DATA_ACTIVITY_DORMANT -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.DATA_ACTIVITY_DORMANT" class="hiddenlink" target="rightframe">DATA_ACTIVITY_DORMANT</A>
+</nobr><br>
+<!-- Class DatabaseUtils -->
+<A HREF="android.database.DatabaseUtils.html" class="hiddenlink" target="rightframe">DatabaseUtils</A><br>
+<!-- Class Date -->
+<i>Date</i><br>
+ <A HREF="java.util.Date.html" class="hiddenlink" target="rightframe">java.util</A><br>
+<!-- Constructor Date -->
+ <nobr><A HREF="java.util.Date.html#java.util.Date.ctor_changed()" class="hiddenlink" target="rightframe">Date
+()</A></nobr> constructor<br>
+<!-- Constructor Date -->
+ <nobr><A HREF="java.util.Date.html#java.util.Date.ctor_changed(int, int, int, int, int, int)" class="hiddenlink" target="rightframe">Date
+(<code>int, int, int, int, int, int</code>)</A></nobr> constructor<br>
+<!-- Class DateUtils -->
+<A HREF="android.text.format.DateUtils.html" class="hiddenlink" target="rightframe">DateUtils</A><br>
+<!-- Class Debug.MemoryInfo -->
+<A HREF="android.os.Debug.MemoryInfo.html" class="hiddenlink" target="rightframe">Debug.MemoryInfo</A><br>
+<!-- Method decodeImProtocol -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.decodeImProtocol_changed(java.lang.String)" class="hiddenlink" target="rightframe">decodeImProtocol
+(<code>String</code>)</A></nobr><br>
+<!-- Field DEFAULT_ALARM_ALERT_URI -->
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.DEFAULT_ALARM_ALERT_URI" class="hiddenlink" target="rightframe">DEFAULT_ALARM_ALERT_URI</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+<i>DEFAULT_SORT_ORDER</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Organizations</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.ContactMethods.html#android.provider.Contacts.People.ContactMethods.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People.ContactMethods</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.Extensions.html#android.provider.Contacts.People.Extensions.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Extensions</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.Phones.html#android.provider.Contacts.People.Phones.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Phones</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.Photos.html#android.provider.Contacts.Photos.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Photos</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Settings</A>
+</nobr><br>
+<!-- Field DELETED_CONTENT_URI -->
+<i>DELETED_CONTENT_URI</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.DELETED_CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+<!-- Field DELETED_CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.DELETED_CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+<!-- Field density -->
+<nobr><A HREF="android.text.TextPaint.html#android.text.TextPaint.density" class="hiddenlink" target="rightframe">density</A>
+</nobr><br>
+<!-- Method describeContents -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.describeContents_added()" class="hiddenlink" target="rightframe"><b>describeContents</b>
+()</A></nobr><br>
+<!-- Field detachWallpaper -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.detachWallpaper" class="hiddenlink" target="rightframe">detachWallpaper</A>
+</nobr><br>
+<!-- Field detailColumn -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.detailColumn" class="hiddenlink" target="rightframe">detailColumn</A>
+</nobr><br>
+<!-- Field detailSocialSummary -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.detailSocialSummary" class="hiddenlink" target="rightframe">detailSocialSummary</A>
+</nobr><br>
+<!-- Class Dialog -->
+<A HREF="android.app.Dialog.html" class="hiddenlink" target="rightframe">Dialog</A><br>
+<!-- Method dispatch -->
+<i>dispatch</i><br>
+ <nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.dispatch_added(android.view.KeyEvent.Callback, android.view.KeyEvent.DispatcherState, java.lang.Object)" class="hiddenlink" target="rightframe">type <b>
+(<code>Callback, DispatcherState, Object</code>)</b> in android.view.KeyEvent
+</A></nobr><br>
+<!-- Method dispatch -->
+ <nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.dispatch_changed(android.view.KeyEvent.Callback)" class="hiddenlink" target="rightframe">type
+(<code>Callback</code>) in android.view.KeyEvent
+</A></nobr><br>
+<!-- Method dispatchClickEvent -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.dispatchClickEvent_changed(android.content.Context)" class="hiddenlink" target="rightframe">dispatchClickEvent
+(<code>Context</code>)</A></nobr><br>
+<!-- Field DISPLAY_NAME -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.DISPLAY_NAME" class="hiddenlink" target="rightframe">DISPLAY_NAME</A>
+</nobr><br>
+<!-- Field DOWNLOAD_REQUIRED -->
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.DOWNLOAD_REQUIRED" class="hiddenlink" target="rightframe">DOWNLOAD_REQUIRED</A>
+</nobr><br>
+<!-- Class Drawable -->
+<A HREF="android.graphics.drawable.Drawable.html" class="hiddenlink" target="rightframe">Drawable</A><br>
+<!-- Class Drawable.ConstantState -->
+<A HREF="android.graphics.drawable.Drawable.ConstantState.html" class="hiddenlink" target="rightframe">Drawable.ConstantState</A><br>
+<!-- Field dropDownHorizontalOffset -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.dropDownHorizontalOffset" class="hiddenlink" target="rightframe">dropDownHorizontalOffset</A>
+</nobr><br>
+<!-- Field dropDownVerticalOffset -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.dropDownVerticalOffset" class="hiddenlink" target="rightframe">dropDownVerticalOffset</A>
+</nobr><br>
+<!-- Method dump -->
+<nobr><A HREF="android.content.pm.ServiceInfo.html#android.content.pm.ServiceInfo.dump_added(android.util.Printer, java.lang.String)" class="hiddenlink" target="rightframe"><b>dump</b>
+(<code>Printer, String</code>)</A></nobr><br>
+<!-- Field ECLAIR -->
+<A NAME="E"></A>
+<br><font size="+2">E</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.ECLAIR" class="hiddenlink" target="rightframe">ECLAIR</A>
+</nobr><br>
+<!-- Field EFFECT_AQUA -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_AQUA" class="hiddenlink" target="rightframe">EFFECT_AQUA</A>
+</nobr><br>
+<!-- Field EFFECT_BLACKBOARD -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_BLACKBOARD" class="hiddenlink" target="rightframe">EFFECT_BLACKBOARD</A>
+</nobr><br>
+<!-- Field EFFECT_MONO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_MONO" class="hiddenlink" target="rightframe">EFFECT_MONO</A>
+</nobr><br>
+<!-- Field EFFECT_NEGATIVE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_NEGATIVE" class="hiddenlink" target="rightframe">EFFECT_NEGATIVE</A>
+</nobr><br>
+<!-- Field EFFECT_NONE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_NONE" class="hiddenlink" target="rightframe">EFFECT_NONE</A>
+</nobr><br>
+<!-- Field EFFECT_POSTERIZE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_POSTERIZE" class="hiddenlink" target="rightframe">EFFECT_POSTERIZE</A>
+</nobr><br>
+<!-- Field EFFECT_SEPIA -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_SEPIA" class="hiddenlink" target="rightframe">EFFECT_SEPIA</A>
+</nobr><br>
+<!-- Field EFFECT_SOLARIZE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_SOLARIZE" class="hiddenlink" target="rightframe">EFFECT_SOLARIZE</A>
+</nobr><br>
+<!-- Field EFFECT_WHITEBOARD -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_WHITEBOARD" class="hiddenlink" target="rightframe">EFFECT_WHITEBOARD</A>
+</nobr><br>
+<!-- Field EMAIL -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.EMAIL" class="hiddenlink" target="rightframe">EMAIL</A>
+</nobr><br>
+<!-- Field EMAIL_ISPRIMARY -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.EMAIL_ISPRIMARY" class="hiddenlink" target="rightframe">EMAIL_ISPRIMARY</A>
+</nobr><br>
+<!-- Field EMAIL_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.EMAIL_TYPE" class="hiddenlink" target="rightframe">EMAIL_TYPE</A>
+</nobr><br>
+<!-- Method encodeCustomImProtocol -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.encodeCustomImProtocol_changed(java.lang.String)" class="hiddenlink" target="rightframe">encodeCustomImProtocol
+(<code>String</code>)</A></nobr><br>
+<!-- Method encodePredefinedImProtocol -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.encodePredefinedImProtocol_changed(int)" class="hiddenlink" target="rightframe">encodePredefinedImProtocol
+(<code>int</code>)</A></nobr><br>
+<!-- Field ERROR_AUTHENTICATION -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_AUTHENTICATION" class="hiddenlink" target="rightframe">ERROR_AUTHENTICATION</A>
+</nobr><br>
+<!-- Field ERROR_BAD_URL -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_BAD_URL" class="hiddenlink" target="rightframe">ERROR_BAD_URL</A>
+</nobr><br>
+<!-- Field ERROR_CONNECT -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_CONNECT" class="hiddenlink" target="rightframe">ERROR_CONNECT</A>
+</nobr><br>
+<!-- Field ERROR_FAILED_SSL_HANDSHAKE -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_FAILED_SSL_HANDSHAKE" class="hiddenlink" target="rightframe">ERROR_FAILED_SSL_HANDSHAKE</A>
+</nobr><br>
+<!-- Field ERROR_FILE -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_FILE" class="hiddenlink" target="rightframe">ERROR_FILE</A>
+</nobr><br>
+<!-- Field ERROR_FILE_NOT_FOUND -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_FILE_NOT_FOUND" class="hiddenlink" target="rightframe">ERROR_FILE_NOT_FOUND</A>
+</nobr><br>
+<!-- Field ERROR_HOST_LOOKUP -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_HOST_LOOKUP" class="hiddenlink" target="rightframe">ERROR_HOST_LOOKUP</A>
+</nobr><br>
+<!-- Field ERROR_IO -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_IO" class="hiddenlink" target="rightframe">ERROR_IO</A>
+</nobr><br>
+<!-- Field ERROR_PROXY_AUTHENTICATION -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_PROXY_AUTHENTICATION" class="hiddenlink" target="rightframe">ERROR_PROXY_AUTHENTICATION</A>
+</nobr><br>
+<!-- Field ERROR_REDIRECT_LOOP -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_REDIRECT_LOOP" class="hiddenlink" target="rightframe">ERROR_REDIRECT_LOOP</A>
+</nobr><br>
+<!-- Field ERROR_TIMEOUT -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_TIMEOUT" class="hiddenlink" target="rightframe">ERROR_TIMEOUT</A>
+</nobr><br>
+<!-- Field ERROR_TOO_MANY_REQUESTS -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_TOO_MANY_REQUESTS" class="hiddenlink" target="rightframe">ERROR_TOO_MANY_REQUESTS</A>
+</nobr><br>
+<!-- Field ERROR_UNKNOWN -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_UNKNOWN" class="hiddenlink" target="rightframe">ERROR_UNKNOWN</A>
+</nobr><br>
+<!-- Field ERROR_UNSUPPORTED_AUTH_SCHEME -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_UNSUPPORTED_AUTH_SCHEME" class="hiddenlink" target="rightframe">ERROR_UNSUPPORTED_AUTH_SCHEME</A>
+</nobr><br>
+<!-- Field ERROR_UNSUPPORTED_SCHEME -->
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_UNSUPPORTED_SCHEME" class="hiddenlink" target="rightframe">ERROR_UNSUPPORTED_SCHEME</A>
+</nobr><br>
+<!-- Class ExifInterface -->
+<A HREF="pkg_android.media.html#ExifInterface" class="hiddenlink" target="rightframe"><b>ExifInterface</b></A><br>
+<!-- Field EXISTS_ON_SERVER -->
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.EXISTS_ON_SERVER" class="hiddenlink" target="rightframe">EXISTS_ON_SERVER</A>
+</nobr><br>
+<!-- Field EXTRA_CHANGED_COMPONENT_NAME -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_CHANGED_COMPONENT_NAME" class="hiddenlink" target="rightframe">EXTRA_CHANGED_COMPONENT_NAME</A>
+</nobr><br>
+<!-- Field EXTRA_CREATE_DESCRIPTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.EXTRA_CREATE_DESCRIPTION" class="hiddenlink" target="rightframe">EXTRA_CREATE_DESCRIPTION</A>
+</nobr><br>
+<!-- Field EXTRA_DOCK_STATE -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE</A>
+</nobr><br>
+<!-- Field EXTRA_DOCK_STATE_CAR -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE_CAR" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE_CAR</A>
+</nobr><br>
+<!-- Field EXTRA_DOCK_STATE_DESK -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE_DESK" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE_DESK</A>
+</nobr><br>
+<!-- Field EXTRA_DOCK_STATE_UNDOCKED -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE_UNDOCKED" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE_UNDOCKED</A>
+</nobr><br>
+<!-- Field EXTRA_FORCE_CREATE -->
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.EXTRA_FORCE_CREATE" class="hiddenlink" target="rightframe">EXTRA_FORCE_CREATE</A>
+</nobr><br>
+<!-- Field EXTRA_HEALTH -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_HEALTH" class="hiddenlink" target="rightframe">EXTRA_HEALTH</A>
+</nobr><br>
+<!-- Field EXTRA_ICON_SMALL -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_ICON_SMALL" class="hiddenlink" target="rightframe">EXTRA_ICON_SMALL</A>
+</nobr><br>
+<!-- Field EXTRA_INITIAL_INTENTS -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_INITIAL_INTENTS" class="hiddenlink" target="rightframe">EXTRA_INITIAL_INTENTS</A>
+</nobr><br>
+<!-- Field EXTRA_LEVEL -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_LEVEL" class="hiddenlink" target="rightframe">EXTRA_LEVEL</A>
+</nobr><br>
+<!-- Field EXTRA_PLUGGED -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_PLUGGED" class="hiddenlink" target="rightframe">EXTRA_PLUGGED</A>
+</nobr><br>
+<!-- Field EXTRA_PRESENT -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_PRESENT" class="hiddenlink" target="rightframe">EXTRA_PRESENT</A>
+</nobr><br>
+<!-- Field EXTRA_REMOTE_INTENT_TOKEN -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_REMOTE_INTENT_TOKEN" class="hiddenlink" target="rightframe">EXTRA_REMOTE_INTENT_TOKEN</A>
+</nobr><br>
+<!-- Field EXTRA_SCALE -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_SCALE" class="hiddenlink" target="rightframe">EXTRA_SCALE</A>
+</nobr><br>
+<!-- Field EXTRA_STATUS -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_STATUS" class="hiddenlink" target="rightframe">EXTRA_STATUS</A>
+</nobr><br>
+<!-- Field EXTRA_TECHNOLOGY -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_TECHNOLOGY" class="hiddenlink" target="rightframe">EXTRA_TECHNOLOGY</A>
+</nobr><br>
+<!-- Field EXTRA_TEMPERATURE -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_TEMPERATURE" class="hiddenlink" target="rightframe">EXTRA_TEMPERATURE</A>
+</nobr><br>
+<!-- Field EXTRA_VOLTAGE -->
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_VOLTAGE" class="hiddenlink" target="rightframe">EXTRA_VOLTAGE</A>
+</nobr><br>
+<!-- Field fadeScrollbars -->
+<A NAME="F"></A>
+<br><font size="+2">F</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.R.attr.html#android.R.attr.fadeScrollbars" class="hiddenlink" target="rightframe">fadeScrollbars</A>
+</nobr><br>
+<!-- Class FeatureInfo -->
+<A HREF="pkg_android.content.pm.html#FeatureInfo" class="hiddenlink" target="rightframe"><b>FeatureInfo</b></A><br>
+<!-- Field FILTER_CONTACTS_ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.FILTER_CONTACTS_ACTION" class="hiddenlink" target="rightframe">FILTER_CONTACTS_ACTION</A>
+</nobr><br>
+<!-- Field FILTER_TEXT_EXTRA_KEY -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.FILTER_TEXT_EXTRA_KEY" class="hiddenlink" target="rightframe">FILTER_TEXT_EXTRA_KEY</A>
+</nobr><br>
+<!-- Method findPointerIndex -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.findPointerIndex_added(int)" class="hiddenlink" target="rightframe"><b>findPointerIndex</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Field finishOnCloseSystemDialogs -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.finishOnCloseSystemDialogs" class="hiddenlink" target="rightframe">finishOnCloseSystemDialogs</A>
+</nobr><br>
+<!-- Field FLAG_ACTIVITY_NO_ANIMATION -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_NO_ANIMATION" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_NO_ANIMATION</A>
+</nobr><br>
+<!-- Field FLAG_CANCELED -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_CANCELED" class="hiddenlink" target="rightframe">FLAG_CANCELED</A>
+</nobr><br>
+<!-- Field FLAG_CANCELED_LONG_PRESS -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_CANCELED_LONG_PRESS" class="hiddenlink" target="rightframe">FLAG_CANCELED_LONG_PRESS</A>
+</nobr><br>
+<!-- Field FLAG_DISMISS_KEYGUARD -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD" class="hiddenlink" target="rightframe">FLAG_DISMISS_KEYGUARD</A>
+</nobr><br>
+<!-- Field FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS -->
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS" class="hiddenlink" target="rightframe">FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS</A>
+</nobr><br>
+<!-- Field FLAG_FOREGROUND -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_FOREGROUND" class="hiddenlink" target="rightframe">FLAG_FOREGROUND</A>
+</nobr><br>
+<!-- Field FLAG_FOREGROUND_SERVICE -->
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.FLAG_FOREGROUND_SERVICE" class="hiddenlink" target="rightframe">FLAG_FOREGROUND_SERVICE</A>
+</nobr><br>
+<!-- Field FLAG_LONG_PRESS -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_LONG_PRESS" class="hiddenlink" target="rightframe">FLAG_LONG_PRESS</A>
+</nobr><br>
+<!-- Field FLAG_PERSISTENT_PROCESS -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_PERSISTENT_PROCESS" class="hiddenlink" target="rightframe">FLAG_PERSISTENT_PROCESS</A>
+</nobr><br>
+<!-- Field FLAG_SHOW_WALLPAPER -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER" class="hiddenlink" target="rightframe">FLAG_SHOW_WALLPAPER</A>
+</nobr><br>
+<!-- Field FLAG_SHOW_WHEN_LOCKED -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED" class="hiddenlink" target="rightframe">FLAG_SHOW_WHEN_LOCKED</A>
+</nobr><br>
+<!-- Field FLAG_STARTED -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_STARTED" class="hiddenlink" target="rightframe">FLAG_STARTED</A>
+</nobr><br>
+<!-- Field FLAG_SYSTEM_PROCESS -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_SYSTEM_PROCESS" class="hiddenlink" target="rightframe">FLAG_SYSTEM_PROCESS</A>
+</nobr><br>
+<!-- Field FLAG_TRACKING -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_TRACKING" class="hiddenlink" target="rightframe">FLAG_TRACKING</A>
+</nobr><br>
+<!-- Field FLAG_TURN_SCREEN_ON -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON" class="hiddenlink" target="rightframe">FLAG_TURN_SCREEN_ON</A>
+</nobr><br>
+<!-- Field FLAG_VIRTUAL_HARD_KEY -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_VIRTUAL_HARD_KEY" class="hiddenlink" target="rightframe">FLAG_VIRTUAL_HARD_KEY</A>
+</nobr><br>
+<!-- Field flags -->
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.flags" class="hiddenlink" target="rightframe">flags</A>
+</nobr><br>
+<!-- Field FLASH_MODE_AUTO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_AUTO" class="hiddenlink" target="rightframe">FLASH_MODE_AUTO</A>
+</nobr><br>
+<!-- Field FLASH_MODE_OFF -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_OFF" class="hiddenlink" target="rightframe">FLASH_MODE_OFF</A>
+</nobr><br>
+<!-- Field FLASH_MODE_ON -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_ON" class="hiddenlink" target="rightframe">FLASH_MODE_ON</A>
+</nobr><br>
+<!-- Field FLASH_MODE_RED_EYE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_RED_EYE" class="hiddenlink" target="rightframe">FLASH_MODE_RED_EYE</A>
+</nobr><br>
+<!-- Field FLASH_MODE_TORCH -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_TORCH" class="hiddenlink" target="rightframe">FLASH_MODE_TORCH</A>
+</nobr><br>
+<!-- Field FOCUS_MODE_AUTO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_AUTO" class="hiddenlink" target="rightframe">FOCUS_MODE_AUTO</A>
+</nobr><br>
+<!-- Field FOCUS_MODE_FIXED -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_FIXED" class="hiddenlink" target="rightframe">FOCUS_MODE_FIXED</A>
+</nobr><br>
+<!-- Field FOCUS_MODE_INFINITY -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_INFINITY" class="hiddenlink" target="rightframe">FOCUS_MODE_INFINITY</A>
+</nobr><br>
+<!-- Field FOCUS_MODE_MACRO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_MACRO" class="hiddenlink" target="rightframe">FOCUS_MODE_MACRO</A>
+</nobr><br>
+<!-- Method formatDateRange -->
+<nobr><A HREF="android.text.format.DateUtils.html#android.text.format.DateUtils.formatDateRange_added(android.content.Context, java.util.Formatter, long, long, int)" class="hiddenlink" target="rightframe"><b>formatDateRange</b>
+(<code>Context, Formatter, long, long, int</code>)</A></nobr><br>
+<!-- Method formatShortFileSize -->
+<nobr><A HREF="android.text.format.Formatter.html#android.text.format.Formatter.formatShortFileSize_added(android.content.Context, long)" class="hiddenlink" target="rightframe"><b>formatShortFileSize</b>
+(<code>Context, long</code>)</A></nobr><br>
+<!-- Class Formatter -->
+<A HREF="android.text.format.Formatter.html" class="hiddenlink" target="rightframe">Formatter</A><br>
+<!-- Field FULL_MODE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.FULL_MODE" class="hiddenlink" target="rightframe">FULL_MODE</A>
+</nobr><br>
+<!-- Class GeolocationPermissions -->
+<A NAME="G"></A>
+<br><font size="+2">G</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.webkit.html#GeolocationPermissions" class="hiddenlink" target="rightframe"><b>GeolocationPermissions</b></A><br>
+<!-- Class GeolocationPermissions.Callback -->
+<A HREF="pkg_android.webkit.html#GeolocationPermissions.Callback" class="hiddenlink" target="rightframe"><b><i>GeolocationPermissions.Callback</i></b></A><br>
+<!-- Method getAntibanding -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getAntibanding_added()" class="hiddenlink" target="rightframe"><b>getAntibanding</b>
+()</A></nobr><br>
+<!-- Method getColorEffect -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getColorEffect_added()" class="hiddenlink" target="rightframe"><b>getColorEffect</b>
+()</A></nobr><br>
+<!-- Method getContentLength -->
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getContentLength_changed()" class="hiddenlink" target="rightframe">getContentLength
+()</A></nobr><br>
+<!-- Method getDatabaseEnabled -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getDatabaseEnabled_added()" class="hiddenlink" target="rightframe"><b>getDatabaseEnabled</b>
+()</A></nobr><br>
+<!-- Method getDatabasePath -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getDatabasePath_added()" class="hiddenlink" target="rightframe"><b>getDatabasePath</b>
+()</A></nobr><br>
+<!-- Method getDescription -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getDescription_changed()" class="hiddenlink" target="rightframe">getDescription
+()</A></nobr><br>
+<!-- Method getDetachWallpaper -->
+<nobr><A HREF="android.view.animation.Animation.html#android.view.animation.Animation.getDetachWallpaper_added()" class="hiddenlink" target="rightframe"><b>getDetachWallpaper</b>
+()</A></nobr><br>
+<!-- Method getDip -->
+<nobr><A HREF="android.text.style.AbsoluteSizeSpan.html#android.text.style.AbsoluteSizeSpan.getDip_added()" class="hiddenlink" target="rightframe"><b>getDip</b>
+()</A></nobr><br>
+<!-- Method getDisplayLabel -->
+<i>getDisplayLabel</i><br>
+ <nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.getDisplayLabel_changed(android.content.Context, int, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe">type
+(<code>Context, int, int, CharSequence</code>) in android.provider.Contacts.ContactMethods
+</A></nobr><br>
+<!-- Method getDisplayLabel -->
+ <nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe">type
+(<code>Context, int, CharSequence</code>) in android.provider.Contacts.Organizations
+</A></nobr><br>
+<!-- Method getDisplayLabel -->
+ <nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe">type
+(<code>Context, int, CharSequence</code>) in android.provider.Contacts.Phones
+</A></nobr><br>
+<!-- Method getDisplayLabel -->
+ <nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence, java.lang.CharSequence[])" class="hiddenlink" target="rightframe">type
+(<code>Context, int, CharSequence, CharSequence[]</code>) in android.provider.Contacts.Phones
+</A></nobr><br>
+<!-- Method getDropDownBackground -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.getDropDownBackground_added()" class="hiddenlink" target="rightframe"><b>getDropDownBackground</b>
+()</A></nobr><br>
+<!-- Method getDropDownHorizontalOffset -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.getDropDownHorizontalOffset_added()" class="hiddenlink" target="rightframe"><b>getDropDownHorizontalOffset</b>
+()</A></nobr><br>
+<!-- Method getDropDownVerticalOffset -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.getDropDownVerticalOffset_added()" class="hiddenlink" target="rightframe"><b>getDropDownVerticalOffset</b>
+()</A></nobr><br>
+<!-- Method getFileName -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getFileName_changed()" class="hiddenlink" target="rightframe">getFileName
+()</A></nobr><br>
+<!-- Method getFlashMode -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getFlashMode_added()" class="hiddenlink" target="rightframe"><b>getFlashMode</b>
+()</A></nobr><br>
+<!-- Method getFocusMode -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getFocusMode_added()" class="hiddenlink" target="rightframe"><b>getFocusMode</b>
+()</A></nobr><br>
+<!-- Method getHeaders -->
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getHeaders_changed()" class="hiddenlink" target="rightframe">getHeaders
+()</A></nobr><br>
+<!-- Method getHistoricalPressure -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalPressure_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalPressure</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method getHistoricalSize -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalSize_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalSize</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method getHistoricalX -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalX_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalX</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method getHistoricalY -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalY_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalY</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method getInputStream -->
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getInputStream_changed()" class="hiddenlink" target="rightframe">getInputStream
+()</A></nobr><br>
+<!-- Method getInstallerPackageName -->
+<i>getInstallerPackageName</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getInstallerPackageName_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getInstallerPackageName -->
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getInstallerPackageName_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getIsSyncable -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getIsSyncable_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>getIsSyncable</b>
+(<code>Account, String</code>)</A></nobr><br>
+<!-- Method getJpegQuality -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getJpegQuality_added()" class="hiddenlink" target="rightframe"><b>getJpegQuality</b>
+()</A></nobr><br>
+<!-- Method getJpegThumbnailQuality -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getJpegThumbnailQuality_added()" class="hiddenlink" target="rightframe"><b>getJpegThumbnailQuality</b>
+()</A></nobr><br>
+<!-- Method getJpegThumbnailSize -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getJpegThumbnailSize_added()" class="hiddenlink" target="rightframe"><b>getJpegThumbnailSize</b>
+()</A></nobr><br>
+<!-- Method getKeyDispatcherState -->
+<i>getKeyDispatcherState</i><br>
+ <nobr><A HREF="android.inputmethodservice.AbstractInputMethodService.html#android.inputmethodservice.AbstractInputMethodService.getKeyDispatcherState_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.inputmethodservice.AbstractInputMethodService
+</A></nobr><br>
+<!-- Method getKeyDispatcherState -->
+ <nobr><A HREF="android.view.View.html#android.view.View.getKeyDispatcherState_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.View
+</A></nobr><br>
+<!-- Method getLac -->
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.getLac_added()" class="hiddenlink" target="rightframe"><b>getLac</b>
+()</A></nobr><br>
+<!-- Method getList -->
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.getList_changed()" class="hiddenlink" target="rightframe">getList
+()</A></nobr><br>
+<!-- Method getMasterSyncAutomatically -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getMasterSyncAutomatically_added()" class="hiddenlink" target="rightframe"><b>getMasterSyncAutomatically</b>
+()</A></nobr><br>
+<!-- Method getMemoryClass -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getMemoryClass_added()" class="hiddenlink" target="rightframe"><b>getMemoryClass</b>
+()</A></nobr><br>
+<!-- Method getName -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getName_changed()" class="hiddenlink" target="rightframe">getName
+()</A></nobr><br>
+<!-- Method getNetworkType -->
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.getNetworkType_added()" class="hiddenlink" target="rightframe"><b>getNetworkType</b>
+()</A></nobr><br>
+<!-- Method getParameters -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.getParameters_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getParameters</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method getPath -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getPath_changed()" class="hiddenlink" target="rightframe">getPath
+()</A></nobr><br>
+<!-- Method getPluginData -->
+<i>getPluginData</i><br>
+ <nobr><A HREF="android.webkit.UrlInterceptHandler.html#android.webkit.UrlInterceptHandler.getPluginData_changed(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type
+(<code>String, Map<String, String></code>) in android.webkit.UrlInterceptHandler
+</A></nobr><br>
+<!-- Method getPluginData -->
+ <nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.getPluginData_changed(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type
+(<code>String, Map<String, String></code>) in android.webkit.UrlInterceptRegistry
+</A></nobr><br>
+<!-- Method getPluginList -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.getPluginList_changed()" class="hiddenlink" target="rightframe">getPluginList
+()</A></nobr><br>
+<!-- Method getPointerCount -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getPointerCount_added()" class="hiddenlink" target="rightframe"><b>getPointerCount</b>
+()</A></nobr><br>
+<!-- Method getPointerId -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getPointerId_added(int)" class="hiddenlink" target="rightframe"><b>getPointerId</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getPressure -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getPressure_added(int)" class="hiddenlink" target="rightframe"><b>getPressure</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getProcessMemoryInfo -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getProcessMemoryInfo_added(int[])" class="hiddenlink" target="rightframe"><b>getProcessMemoryInfo</b>
+(<code>int[]</code>)</A></nobr><br>
+<!-- Method getPsc -->
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.getPsc_added()" class="hiddenlink" target="rightframe"><b>getPsc</b>
+()</A></nobr><br>
+<!-- Method getRunningServiceControlPanel -->
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRunningServiceControlPanel_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getRunningServiceControlPanel</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<!-- Method getSceneMode -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSceneMode_added()" class="hiddenlink" target="rightframe"><b>getSceneMode</b>
+()</A></nobr><br>
+<!-- Method getScrollBarFadeDuration -->
+<nobr><A HREF="android.view.ViewConfiguration.html#android.view.ViewConfiguration.getScrollBarFadeDuration_added()" class="hiddenlink" target="rightframe"><b>getScrollBarFadeDuration</b>
+()</A></nobr><br>
+<!-- Method getScrollDefaultDelay -->
+<nobr><A HREF="android.view.ViewConfiguration.html#android.view.ViewConfiguration.getScrollDefaultDelay_added()" class="hiddenlink" target="rightframe"><b>getScrollDefaultDelay</b>
+()</A></nobr><br>
+<!-- Method getSetting -->
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.getSetting_changed(android.content.ContentResolver, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">getSetting
+(<code>ContentResolver, String, String</code>)</A></nobr><br>
+<!-- Method getSize -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getSize_added(int)" class="hiddenlink" target="rightframe"><b>getSize</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getStatusCode -->
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getStatusCode_changed()" class="hiddenlink" target="rightframe">getStatusCode
+()</A></nobr><br>
+<!-- Method getSupportedAntibanding -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedAntibanding_added()" class="hiddenlink" target="rightframe"><b>getSupportedAntibanding</b>
+()</A></nobr><br>
+<!-- Method getSupportedColorEffects -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedColorEffects_added()" class="hiddenlink" target="rightframe"><b>getSupportedColorEffects</b>
+()</A></nobr><br>
+<!-- Method getSupportedFlashModes -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedFlashModes_added()" class="hiddenlink" target="rightframe"><b>getSupportedFlashModes</b>
+()</A></nobr><br>
+<!-- Method getSupportedFocusModes -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedFocusModes_added()" class="hiddenlink" target="rightframe"><b>getSupportedFocusModes</b>
+()</A></nobr><br>
+<!-- Method getSupportedPictureFormats -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPictureFormats_added()" class="hiddenlink" target="rightframe"><b>getSupportedPictureFormats</b>
+()</A></nobr><br>
+<!-- Method getSupportedPictureSizes -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPictureSizes_added()" class="hiddenlink" target="rightframe"><b>getSupportedPictureSizes</b>
+()</A></nobr><br>
+<!-- Method getSupportedPreviewFormats -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPreviewFormats_added()" class="hiddenlink" target="rightframe"><b>getSupportedPreviewFormats</b>
+()</A></nobr><br>
+<!-- Method getSupportedPreviewFrameRates -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPreviewFrameRates_added()" class="hiddenlink" target="rightframe"><b>getSupportedPreviewFrameRates</b>
+()</A></nobr><br>
+<!-- Method getSupportedPreviewSizes -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPreviewSizes_added()" class="hiddenlink" target="rightframe"><b>getSupportedPreviewSizes</b>
+()</A></nobr><br>
+<!-- Method getSupportedSceneModes -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedSceneModes_added()" class="hiddenlink" target="rightframe"><b>getSupportedSceneModes</b>
+()</A></nobr><br>
+<!-- Method getSupportedWhiteBalance -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedWhiteBalance_added()" class="hiddenlink" target="rightframe"><b>getSupportedWhiteBalance</b>
+()</A></nobr><br>
+<!-- Method getSyncAdapterTypes -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getSyncAdapterTypes_added()" class="hiddenlink" target="rightframe"><b>getSyncAdapterTypes</b>
+()</A></nobr><br>
+<!-- Method getSyncAutomatically -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getSyncAutomatically_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>getSyncAutomatically</b>
+(<code>Account, String</code>)</A></nobr><br>
+<!-- Method getSystemAvailableFeatures -->
+<i>getSystemAvailableFeatures</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getSystemAvailableFeatures_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method getSystemAvailableFeatures -->
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getSystemAvailableFeatures_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Method getThumbnail -->
+<nobr><A HREF="android.provider.MediaStore.Images.Thumbnails.html#android.provider.MediaStore.Images.Thumbnails.getThumbnail_added(android.content.ContentResolver, long, int, android.graphics.BitmapFactory.Options)" class="hiddenlink" target="rightframe"><b>getThumbnail</b>
+(<code>ContentResolver, long, int, Options</code>)</A></nobr><br>
+<!-- Method getTotalPrivateDirty -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.getTotalPrivateDirty_added()" class="hiddenlink" target="rightframe"><b>getTotalPrivateDirty</b>
+()</A></nobr><br>
+<!-- Method getTotalPss -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.getTotalPss_added()" class="hiddenlink" target="rightframe"><b>getTotalPss</b>
+()</A></nobr><br>
+<!-- Method getTotalSharedDirty -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.getTotalSharedDirty_added()" class="hiddenlink" target="rightframe"><b>getTotalSharedDirty</b>
+()</A></nobr><br>
+<!-- Method getUseDoubleTree -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getUseDoubleTree_changed()" class="hiddenlink" target="rightframe">getUseDoubleTree
+()</A></nobr><br>
+<!-- Method getViewBinder -->
+<nobr><A HREF="android.widget.SimpleCursorTreeAdapter.html#android.widget.SimpleCursorTreeAdapter.getViewBinder_added()" class="hiddenlink" target="rightframe"><b>getViewBinder</b>
+()</A></nobr><br>
+<!-- Method getWallpaper -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.getWallpaper_changed()" class="hiddenlink" target="rightframe">getWallpaper
+()</A></nobr><br>
+<!-- Method getWallpaperDesiredMinimumHeight -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.getWallpaperDesiredMinimumHeight_changed()" class="hiddenlink" target="rightframe">getWallpaperDesiredMinimumHeight
+()</A></nobr><br>
+<!-- Method getWallpaperDesiredMinimumWidth -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.getWallpaperDesiredMinimumWidth_changed()" class="hiddenlink" target="rightframe">getWallpaperDesiredMinimumWidth
+()</A></nobr><br>
+<!-- Method getWhiteBalance -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getWhiteBalance_added()" class="hiddenlink" target="rightframe"><b>getWhiteBalance</b>
+()</A></nobr><br>
+<!-- Method getX -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getX_added(int)" class="hiddenlink" target="rightframe"><b>getX</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method getY -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getY_added(int)" class="hiddenlink" target="rightframe"><b>getY</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Class GLSurfaceView -->
+<A HREF="android.opengl.GLSurfaceView.html" class="hiddenlink" target="rightframe">GLSurfaceView</A><br>
+<!-- Class GLSurfaceView.EGLContextFactory -->
+<A HREF="pkg_android.opengl.html#GLSurfaceView.EGLContextFactory" class="hiddenlink" target="rightframe"><b><i>GLSurfaceView.EGLContextFactory</i></b></A><br>
+<!-- Class GLSurfaceView.EGLWindowSurfaceFactory -->
+<A HREF="pkg_android.opengl.html#GLSurfaceView.EGLWindowSurfaceFactory" class="hiddenlink" target="rightframe"><b><i>GLSurfaceView.EGLWindowSurfaceFactory</i></b></A><br>
+<!-- Class GpsStatus.NmeaListener -->
+<A HREF="pkg_android.location.html#GpsStatus.NmeaListener" class="hiddenlink" target="rightframe"><b><i>GpsStatus.NmeaListener</i></b></A><br>
+<!-- Field GPU -->
+<nobr><A HREF="android.view.Surface.html#android.view.Surface.GPU" class="hiddenlink" target="rightframe">GPU</A>
+</nobr><br>
+<!-- Field GROUP_ANDROID_STARRED -->
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.GROUP_ANDROID_STARRED" class="hiddenlink" target="rightframe">GROUP_ANDROID_STARRED</A>
+</nobr><br>
+<!-- Field GROUP_ID -->
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_ID" class="hiddenlink" target="rightframe">GROUP_ID</A>
+</nobr><br>
+<!-- Field GROUP_MY_CONTACTS -->
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.GROUP_MY_CONTACTS" class="hiddenlink" target="rightframe">GROUP_MY_CONTACTS</A>
+</nobr><br>
+<!-- Field GROUP_NAME_EXTRA_KEY -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.GROUP_NAME_EXTRA_KEY" class="hiddenlink" target="rightframe">GROUP_NAME_EXTRA_KEY</A>
+</nobr><br>
+<!-- Field GROUP_SYNC_ACCOUNT -->
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_SYNC_ACCOUNT" class="hiddenlink" target="rightframe">GROUP_SYNC_ACCOUNT</A>
+</nobr><br>
+<!-- Field GROUP_SYNC_ACCOUNT_TYPE -->
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_SYNC_ACCOUNT_TYPE" class="hiddenlink" target="rightframe">GROUP_SYNC_ACCOUNT_TYPE</A>
+</nobr><br>
+<!-- Field GROUP_SYNC_ID -->
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_SYNC_ID" class="hiddenlink" target="rightframe">GROUP_SYNC_ID</A>
+</nobr><br>
+<!-- Class HandlerThread -->
+<A NAME="H"></A>
+<br><font size="+2">H</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.os.HandlerThread.html" class="hiddenlink" target="rightframe">HandlerThread</A><br>
+<!-- Class HapticFeedbackConstants -->
+<A HREF="android.view.HapticFeedbackConstants.html" class="hiddenlink" target="rightframe">HapticFeedbackConstants</A><br>
+<!-- Field HARDWARE -->
+<nobr><A HREF="android.view.Surface.html#android.view.Surface.HARDWARE" class="hiddenlink" target="rightframe">HARDWARE</A>
+</nobr><br>
+<!-- Method hasIccCard -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.hasIccCard_added()" class="hiddenlink" target="rightframe"><b>hasIccCard</b>
+()</A></nobr><br>
+<!-- Method hasSystemFeature -->
+<i>hasSystemFeature</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.hasSystemFeature_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.content.pm.PackageManager
+</A></nobr><br>
+<!-- Method hasSystemFeature -->
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.hasSystemFeature_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<!-- Field IM_ACCOUNT -->
+<A NAME="I"></A>
+<br><font size="+2">I</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.PresenceColumns.html#android.provider.Contacts.PresenceColumns.IM_ACCOUNT" class="hiddenlink" target="rightframe">IM_ACCOUNT</A>
+</nobr><br>
+<!-- Field IM_HANDLE -->
+<i>IM_HANDLE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.IM_HANDLE" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+<!-- Field IM_HANDLE -->
+ in
+<nobr><A HREF="android.provider.Contacts.PresenceColumns.html#android.provider.Contacts.PresenceColumns.IM_HANDLE" class="hiddenlink" target="rightframe">android.provider.Contacts.PresenceColumns</A>
+</nobr><br>
+<!-- Field IM_ISPRIMARY -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.IM_ISPRIMARY" class="hiddenlink" target="rightframe">IM_ISPRIMARY</A>
+</nobr><br>
+<!-- Field IM_PROTOCOL -->
+<i>IM_PROTOCOL</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.IM_PROTOCOL" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+<!-- Field IM_PROTOCOL -->
+ in
+<nobr><A HREF="android.provider.Contacts.PresenceColumns.html#android.provider.Contacts.PresenceColumns.IM_PROTOCOL" class="hiddenlink" target="rightframe">android.provider.Contacts.PresenceColumns</A>
+</nobr><br>
+<!-- Class ImageSpan -->
+<i>ImageSpan</i><br>
+ <A HREF="android.text.style.ImageSpan.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<!-- Constructor ImageSpan -->
+ <nobr><A HREF="android.text.style.ImageSpan.html#android.text.style.ImageSpan.ctor_changed(android.graphics.Bitmap)" class="hiddenlink" target="rightframe">ImageSpan
+(<code>Bitmap</code>)</A></nobr> constructor<br>
+<!-- Constructor ImageSpan -->
+ <nobr><A HREF="android.text.style.ImageSpan.html#android.text.style.ImageSpan.ctor_changed(android.graphics.Bitmap, int)" class="hiddenlink" target="rightframe">ImageSpan
+(<code>Bitmap, int</code>)</A></nobr> constructor<br>
+<!-- Field importanceReasonCode -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.importanceReasonCode" class="hiddenlink" target="rightframe">importanceReasonCode</A>
+</nobr><br>
+<!-- Field importanceReasonComponent -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.importanceReasonComponent" class="hiddenlink" target="rightframe">importanceReasonComponent</A>
+</nobr><br>
+<!-- Field importanceReasonPid -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.importanceReasonPid" class="hiddenlink" target="rightframe">importanceReasonPid</A>
+</nobr><br>
+<!-- Method injectInsrumentation -->
+<nobr><A HREF="android.test.InstrumentationTestCase.html#android.test.InstrumentationTestCase.injectInsrumentation_changed(android.app.Instrumentation)" class="hiddenlink" target="rightframe">injectInsrumentation
+(<code>Instrumentation</code>)</A></nobr><br>
+<!-- Method injectInstrumentation -->
+<nobr><A HREF="android.test.InstrumentationTestCase.html#android.test.InstrumentationTestCase.injectInstrumentation_added(android.app.Instrumentation)" class="hiddenlink" target="rightframe"><b>injectInstrumentation</b>
+(<code>Instrumentation</code>)</A></nobr><br>
+<!-- Class InputMethodService -->
+<A HREF="android.inputmethodservice.InputMethodService.html" class="hiddenlink" target="rightframe">InputMethodService</A><br>
+<!-- Class InputType -->
+<A HREF="android.text.InputType.html" class="hiddenlink" target="rightframe"><i>InputType</i></A><br>
+<!-- Class InstrumentationTestCase -->
+<A HREF="android.test.InstrumentationTestCase.html" class="hiddenlink" target="rightframe">InstrumentationTestCase</A><br>
+<!-- Class Intent -->
+<A HREF="android.content.Intent.html" class="hiddenlink" target="rightframe">Intent</A><br>
+<!-- Class IntentService -->
+<A HREF="android.app.IntentService.html" class="hiddenlink" target="rightframe">IntentService</A><br>
+<!-- Method isCanceled -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.isCanceled_added()" class="hiddenlink" target="rightframe"><b>isCanceled</b>
+()</A></nobr><br>
+<!-- Method isFloat -->
+<i>isFloat</i><br>
+ <nobr><A HREF="android.database.AbstractWindowedCursor.html#android.database.AbstractWindowedCursor.isFloat_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.database.AbstractWindowedCursor
+</A></nobr><br>
+<!-- Method isFloat -->
+ <nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.isFloat_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.database.CursorWindow
+</A></nobr><br>
+<!-- Method isInitialStickyBroadcast -->
+<nobr><A HREF="android.content.BroadcastReceiver.html#android.content.BroadcastReceiver.isInitialStickyBroadcast_added()" class="hiddenlink" target="rightframe"><b>isInitialStickyBroadcast</b>
+()</A></nobr><br>
+<!-- Method isLong -->
+<i>isLong</i><br>
+ <nobr><A HREF="android.database.AbstractWindowedCursor.html#android.database.AbstractWindowedCursor.isLong_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.database.AbstractWindowedCursor
+</A></nobr><br>
+<!-- Method isLong -->
+ <nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.isLong_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.database.CursorWindow
+</A></nobr><br>
+<!-- Method isLongPress -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.isLongPress_added()" class="hiddenlink" target="rightframe"><b>isLongPress</b>
+()</A></nobr><br>
+<!-- Method isOrderedBroadcast -->
+<nobr><A HREF="android.content.BroadcastReceiver.html#android.content.BroadcastReceiver.isOrderedBroadcast_added()" class="hiddenlink" target="rightframe"><b>isOrderedBroadcast</b>
+()</A></nobr><br>
+<!-- Field ISPRIMARY -->
+<i>ISPRIMARY</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.ISPRIMARY" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field ISPRIMARY -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.ISPRIMARY" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field ISPRIMARY -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.ISPRIMARY" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Method isScrollbarFadingEnabled -->
+<nobr><A HREF="android.view.View.html#android.view.View.isScrollbarFadingEnabled_added()" class="hiddenlink" target="rightframe"><b>isScrollbarFadingEnabled</b>
+()</A></nobr><br>
+<!-- Method isString -->
+<i>isString</i><br>
+ <nobr><A HREF="android.database.AbstractWindowedCursor.html#android.database.AbstractWindowedCursor.isString_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.database.AbstractWindowedCursor
+</A></nobr><br>
+<!-- Method isString -->
+ <nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.isString_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.database.CursorWindow
+</A></nobr><br>
+<!-- Field isSyncable -->
+<nobr><A HREF="android.content.pm.ProviderInfo.html#android.content.pm.ProviderInfo.isSyncable" class="hiddenlink" target="rightframe">isSyncable</A>
+</nobr><br>
+<!-- Method isSyncActive -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.isSyncActive_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>isSyncActive</b>
+(<code>Account, String</code>)</A></nobr><br>
+<!-- Method isSyncPending -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.isSyncPending_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>isSyncPending</b>
+(<code>Account, String</code>)</A></nobr><br>
+<!-- Method isTracking -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.isTracking_added()" class="hiddenlink" target="rightframe"><b>isTracking</b>
+()</A></nobr><br>
+<!-- Method isWiredHeadsetOn -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.isWiredHeadsetOn_added()" class="hiddenlink" target="rightframe"><b>isWiredHeadsetOn</b>
+()</A></nobr><br>
+<!-- Package java.lang -->
+<A NAME="J"></A>
+<A HREF="pkg_java.lang.html" class="hiddenlink" target="rightframe">java.lang</A><br>
+<!-- Package java.net -->
+<A HREF="pkg_java.net.html" class="hiddenlink" target="rightframe">java.net</A><br>
+<!-- Package java.util -->
+<A HREF="pkg_java.util.html" class="hiddenlink" target="rightframe">java.util</A><br>
+<!-- Package java.util.concurrent -->
+<A HREF="pkg_java.util.concurrent.html" class="hiddenlink" target="rightframe">java.util.concurrent</A><br>
+<!-- Package java.util.concurrent.locks -->
+<A HREF="pkg_java.util.concurrent.locks.html" class="hiddenlink" target="rightframe">java.util.concurrent.locks</A><br>
+<!-- Field JOB_TITLE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.JOB_TITLE" class="hiddenlink" target="rightframe">JOB_TITLE</A>
+</nobr><br>
+<!-- Field KEY -->
+<A NAME="K"></A>
+<br><font size="+2">K</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns.KEY" class="hiddenlink" target="rightframe">KEY</A>
+</nobr><br>
+<!-- Class KeyEvent -->
+<i>KeyEvent</i><br>
+ <A HREF="android.view.KeyEvent.html" class="hiddenlink" target="rightframe">android.view</A><br>
+<!-- Constructor KeyEvent -->
+ <nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.ctor_changed(android.view.KeyEvent, long, int)" class="hiddenlink" target="rightframe">KeyEvent
+(<code>KeyEvent, long, int</code>)</A></nobr> constructor<br>
+<!-- Class KeyEvent.Callback -->
+<A HREF="android.view.KeyEvent.Callback.html" class="hiddenlink" target="rightframe"><i>KeyEvent.Callback</i></A><br>
+<!-- Class KeyEvent.DispatcherState -->
+<A HREF="pkg_android.view.html#KeyEvent.DispatcherState" class="hiddenlink" target="rightframe"><b>KeyEvent.DispatcherState</b></A><br>
+<!-- Field killAfterRestore -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.killAfterRestore" class="hiddenlink" target="rightframe">killAfterRestore</A>
+</nobr><br>
+<!-- Field KIND -->
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.KIND" class="hiddenlink" target="rightframe">KIND</A>
+</nobr><br>
+<!-- Field KIND_EMAIL -->
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_EMAIL" class="hiddenlink" target="rightframe">KIND_EMAIL</A>
+</nobr><br>
+<!-- Field KIND_IM -->
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_IM" class="hiddenlink" target="rightframe">KIND_IM</A>
+</nobr><br>
+<!-- Field KIND_ORGANIZATION -->
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_ORGANIZATION" class="hiddenlink" target="rightframe">KIND_ORGANIZATION</A>
+</nobr><br>
+<!-- Field KIND_PHONE -->
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_PHONE" class="hiddenlink" target="rightframe">KIND_PHONE</A>
+</nobr><br>
+<!-- Field KIND_POSTAL -->
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_POSTAL" class="hiddenlink" target="rightframe">KIND_POSTAL</A>
+</nobr><br>
+<!-- Field LABEL -->
+<A NAME="L"></A>
+<br><font size="+2">L</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>LABEL</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.LABEL" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field LABEL -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.LABEL" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field LABEL -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.LABEL" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Class LabeledIntent -->
+<A HREF="pkg_android.content.pm.html#LabeledIntent" class="hiddenlink" target="rightframe"><b>LabeledIntent</b></A><br>
+<!-- Field LAST_TIME_CONTACTED -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.LAST_TIME_CONTACTED" class="hiddenlink" target="rightframe">LAST_TIME_CONTACTED</A>
+</nobr><br>
+<!-- Class LauncherActivity -->
+<A HREF="android.app.LauncherActivity.html" class="hiddenlink" target="rightframe">LauncherActivity</A><br>
+<!-- Class LineHeightSpan.WithDensity -->
+<A HREF="pkg_android.text.style.html#LineHeightSpan.WithDensity" class="hiddenlink" target="rightframe"><b><i>LineHeightSpan.WithDensity</i></b></A><br>
+<!-- Field LIST_ALL_CONTACTS_ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_ALL_CONTACTS_ACTION" class="hiddenlink" target="rightframe">LIST_ALL_CONTACTS_ACTION</A>
+</nobr><br>
+<!-- Field LIST_CONTACTS_WITH_PHONES_ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_CONTACTS_WITH_PHONES_ACTION" class="hiddenlink" target="rightframe">LIST_CONTACTS_WITH_PHONES_ACTION</A>
+</nobr><br>
+<!-- Field LIST_DEFAULT -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_DEFAULT" class="hiddenlink" target="rightframe">LIST_DEFAULT</A>
+</nobr><br>
+<!-- Field LIST_FREQUENT_ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_FREQUENT_ACTION" class="hiddenlink" target="rightframe">LIST_FREQUENT_ACTION</A>
+</nobr><br>
+<!-- Field LIST_GROUP_ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_GROUP_ACTION" class="hiddenlink" target="rightframe">LIST_GROUP_ACTION</A>
+</nobr><br>
+<!-- Field LIST_STARRED_ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_STARRED_ACTION" class="hiddenlink" target="rightframe">LIST_STARRED_ACTION</A>
+</nobr><br>
+<!-- Field LIST_STREQUENT_ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_STREQUENT_ACTION" class="hiddenlink" target="rightframe">LIST_STREQUENT_ACTION</A>
+</nobr><br>
+<!-- Method loadContactPhoto -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.loadContactPhoto_changed(android.content.Context, android.net.Uri, int, android.graphics.BitmapFactory.Options)" class="hiddenlink" target="rightframe">loadContactPhoto
+(<code>Context, Uri, int, Options</code>)</A></nobr><br>
+<!-- Field LOCAL_VERSION -->
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.LOCAL_VERSION" class="hiddenlink" target="rightframe">LOCAL_VERSION</A>
+</nobr><br>
+<!-- Class LocationManager -->
+<A HREF="android.location.LocationManager.html" class="hiddenlink" target="rightframe">LocationManager</A><br>
+<!-- Method lock -->
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.lock_added()" class="hiddenlink" target="rightframe"><b>lock</b>
+()</A></nobr><br>
+<!-- Method lockCanvas -->
+<nobr><A HREF="android.view.Surface.html#android.view.Surface.lockCanvas_changed(android.graphics.Rect)" class="hiddenlink" target="rightframe">lockCanvas
+(<code>Rect</code>)</A></nobr><br>
+<!-- Field MANAGE_ACCOUNTS -->
+<A NAME="M"></A>
+<br><font size="+2">M</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.MANAGE_ACCOUNTS" class="hiddenlink" target="rightframe">MANAGE_ACCOUNTS</A>
+</nobr><br>
+<!-- Class Manifest.permission -->
+<A HREF="android.Manifest.permission.html" class="hiddenlink" target="rightframe">Manifest.permission</A><br>
+<!-- Method markAsContacted -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.markAsContacted_changed(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe">markAsContacted
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<!-- Field MEDIA_INFO_METADATA_UPDATE -->
+<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.MEDIA_INFO_METADATA_UPDATE" class="hiddenlink" target="rightframe">MEDIA_INFO_METADATA_UPDATE</A>
+</nobr><br>
+<!-- Class MediaController.MediaPlayerControl -->
+<A HREF="android.widget.MediaController.MediaPlayerControl.html" class="hiddenlink" target="rightframe"><i>MediaController.MediaPlayerControl</i></A><br>
+<!-- Class MediaPlayer -->
+<A HREF="android.media.MediaPlayer.html" class="hiddenlink" target="rightframe">MediaPlayer</A><br>
+<!-- Class MediaStore.Images.Thumbnails -->
+<A HREF="android.provider.MediaStore.Images.Thumbnails.html" class="hiddenlink" target="rightframe">MediaStore.Images.Thumbnails</A><br>
+<!-- Class MediaStore.Video.Thumbnails -->
+<A HREF="pkg_android.provider.html#MediaStore.Video.Thumbnails" class="hiddenlink" target="rightframe"><b>MediaStore.Video.Thumbnails</b></A><br>
+<!-- Field MEMORY_TYPE_GPU -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.MEMORY_TYPE_GPU" class="hiddenlink" target="rightframe">MEMORY_TYPE_GPU</A>
+</nobr><br>
+<!-- Field MEMORY_TYPE_HARDWARE -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.MEMORY_TYPE_HARDWARE" class="hiddenlink" target="rightframe">MEMORY_TYPE_HARDWARE</A>
+</nobr><br>
+<!-- Field METADATA_DOCK_HOME -->
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.METADATA_DOCK_HOME" class="hiddenlink" target="rightframe">METADATA_DOCK_HOME</A>
+</nobr><br>
+<!-- Class MockContext -->
+<A HREF="android.test.mock.MockContext.html" class="hiddenlink" target="rightframe">MockContext</A><br>
+<!-- Class MockPackageManager -->
+<A HREF="android.test.mock.MockPackageManager.html" class="hiddenlink" target="rightframe">MockPackageManager</A><br>
+<!-- Class MotionEvent -->
+<A HREF="android.view.MotionEvent.html" class="hiddenlink" target="rightframe">MotionEvent</A><br>
+<!-- Field NAME -->
+<A NAME="N"></A>
+<br><font size="+2">N</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>NAME</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ExtensionsColumns.html#android.provider.Contacts.ExtensionsColumns.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.ExtensionsColumns</A>
+</nobr><br>
+<!-- Field NAME -->
+ in
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupsColumns</A>
+</nobr><br>
+<!-- Field NAME -->
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+<!-- Field NAME -->
+ in
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.PeopleColumns</A>
+</nobr><br>
+<!-- Field navigationHidden -->
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.navigationHidden" class="hiddenlink" target="rightframe">navigationHidden</A>
+</nobr><br>
+<!-- Field NAVIGATIONHIDDEN_NO -->
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.NAVIGATIONHIDDEN_NO" class="hiddenlink" target="rightframe">NAVIGATIONHIDDEN_NO</A>
+</nobr><br>
+<!-- Field NAVIGATIONHIDDEN_UNDEFINED -->
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.NAVIGATIONHIDDEN_UNDEFINED" class="hiddenlink" target="rightframe">NAVIGATIONHIDDEN_UNDEFINED</A>
+</nobr><br>
+<!-- Field NAVIGATIONHIDDEN_YES -->
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.NAVIGATIONHIDDEN_YES" class="hiddenlink" target="rightframe">NAVIGATIONHIDDEN_YES</A>
+</nobr><br>
+<!-- Class NeighboringCellInfo -->
+<i>NeighboringCellInfo</i><br>
+ <A HREF="android.telephony.NeighboringCellInfo.html" class="hiddenlink" target="rightframe">android.telephony</A><br>
+<!-- Constructor NeighboringCellInfo -->
+ <nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.ctor_changed()" class="hiddenlink" target="rightframe">NeighboringCellInfo
+()</A></nobr> constructor<br>
+<!-- Constructor NeighboringCellInfo -->
+ <nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.ctor_changed(int, int)" class="hiddenlink" target="rightframe">NeighboringCellInfo
+(<code>int, int</code>)</A></nobr> constructor<br>
+<!-- Field NETWORK_TYPE_1xRTT -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_1xRTT" class="hiddenlink" target="rightframe">NETWORK_TYPE_1xRTT</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_CDMA -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_CDMA" class="hiddenlink" target="rightframe">NETWORK_TYPE_CDMA</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_EVDO_0 -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_EVDO_0" class="hiddenlink" target="rightframe">NETWORK_TYPE_EVDO_0</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_EVDO_A -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_EVDO_A" class="hiddenlink" target="rightframe">NETWORK_TYPE_EVDO_A</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_HSDPA -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_HSDPA" class="hiddenlink" target="rightframe">NETWORK_TYPE_HSDPA</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_HSPA -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_HSPA" class="hiddenlink" target="rightframe">NETWORK_TYPE_HSPA</A>
+</nobr><br>
+<!-- Field NETWORK_TYPE_HSUPA -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_HSUPA" class="hiddenlink" target="rightframe">NETWORK_TYPE_HSUPA</A>
+</nobr><br>
+<!-- Method newDrawable -->
+<nobr><A HREF="android.graphics.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.newDrawable_added(android.content.res.Resources)" class="hiddenlink" target="rightframe"><b>newDrawable</b>
+(<code>Resources</code>)</A></nobr><br>
+<!-- Class NinePatchDrawable -->
+<i>NinePatchDrawable</i><br>
+ <A HREF="android.graphics.drawable.NinePatchDrawable.html" class="hiddenlink" target="rightframe">android.graphics.drawable</A><br>
+<!-- Constructor NinePatchDrawable -->
+ <nobr><A HREF="android.graphics.drawable.NinePatchDrawable.html#android.graphics.drawable.NinePatchDrawable.ctor_changed(android.graphics.Bitmap, byte[], android.graphics.Rect, java.lang.String)" class="hiddenlink" target="rightframe">NinePatchDrawable
+(<code>Bitmap, byte[], Rect, String</code>)</A></nobr> constructor<br>
+<!-- Field NOTES -->
+<i>NOTES</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.NOTES" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupsColumns</A>
+</nobr><br>
+<!-- Field NOTES -->
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.NOTES" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+<!-- Field NOTES -->
+ in
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.NOTES" class="hiddenlink" target="rightframe">android.provider.Contacts.PeopleColumns</A>
+</nobr><br>
+<!-- Class Notification -->
+<A HREF="android.app.Notification.html" class="hiddenlink" target="rightframe">Notification</A><br>
+<!-- Class NotificationManager -->
+<A HREF="android.app.NotificationManager.html" class="hiddenlink" target="rightframe">NotificationManager</A><br>
+<!-- Method notify -->
+<nobr><A HREF="android.app.NotificationManager.html#android.app.NotificationManager.notify_added(java.lang.String, int, android.app.Notification)" class="hiddenlink" target="rightframe"><b>notify</b>
+(<code>String, int, Notification</code>)</A></nobr><br>
+<!-- Field NUMBER -->
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.NUMBER" class="hiddenlink" target="rightframe">NUMBER</A>
+</nobr><br>
+<!-- Field NUMBER_KEY -->
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.NUMBER_KEY" class="hiddenlink" target="rightframe">NUMBER_KEY</A>
+</nobr><br>
+<!-- Method obtain -->
+<A NAME="O"></A>
+<br><font size="+2">O</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.obtain_added(long, long, int, int, float, float, float, float, int, float, float, int, int)" class="hiddenlink" target="rightframe"><b>obtain</b>
+(<code>long, long, int, int, float, float, float, float, int, float, float, int, int</code>)</A></nobr><br>
+<!-- Method obtainNoHistory -->
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.obtainNoHistory_added(android.view.MotionEvent)" class="hiddenlink" target="rightframe"><b>obtainNoHistory</b>
+(<code>MotionEvent</code>)</A></nobr><br>
+<!-- Method onAttachedToWindow -->
+<i>onAttachedToWindow</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onAttachedToWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Activity
+</A></nobr><br>
+<!-- Method onAttachedToWindow -->
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onAttachedToWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Dialog
+</A></nobr><br>
+<!-- Method onAttachedToWindow -->
+ <nobr><A HREF="android.view.Window.Callback.html#android.view.Window.Callback.onAttachedToWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.Window.Callback
+</A></nobr><br>
+<!-- Method onBackPressed -->
+<i>onBackPressed</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onBackPressed_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Activity
+</A></nobr><br>
+<!-- Method onBackPressed -->
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onBackPressed_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Dialog
+</A></nobr><br>
+<!-- Method onDetachedFromWindow -->
+<i>onDetachedFromWindow</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onDetachedFromWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Activity
+</A></nobr><br>
+<!-- Method onDetachedFromWindow -->
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onDetachedFromWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Dialog
+</A></nobr><br>
+<!-- Method onDetachedFromWindow -->
+ <nobr><A HREF="android.view.Window.Callback.html#android.view.Window.Callback.onDetachedFromWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.Window.Callback
+</A></nobr><br>
+<!-- Method onExceededDatabaseQuota -->
+<i>onExceededDatabaseQuota</i><br>
+ <nobr><A HREF="android.webkit.CallbackProxy.html#android.webkit.CallbackProxy.onExceededDatabaseQuota_added(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, String, long, long, long, QuotaUpdater</code>)</b> in android.webkit.CallbackProxy
+</A></nobr><br>
+<!-- Method onExceededDatabaseQuota -->
+ <nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onExceededDatabaseQuota_added(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, String, long, long, long, QuotaUpdater</code>)</b> in android.webkit.WebChromeClient
+</A></nobr><br>
+<!-- Method onGeolocationPermissionsHidePrompt -->
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onGeolocationPermissionsHidePrompt_added()" class="hiddenlink" target="rightframe"><b>onGeolocationPermissionsHidePrompt</b>
+()</A></nobr><br>
+<!-- Method onGeolocationPermissionsShowPrompt -->
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onGeolocationPermissionsShowPrompt_added(java.lang.String, android.webkit.GeolocationPermissions.Callback)" class="hiddenlink" target="rightframe"><b>onGeolocationPermissionsShowPrompt</b>
+(<code>String, Callback</code>)</A></nobr><br>
+<!-- Method onKeyLongPress -->
+<i>onKeyLongPress</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.app.Activity
+</A></nobr><br>
+<!-- Method onKeyLongPress -->
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.app.Dialog
+</A></nobr><br>
+<!-- Method onKeyLongPress -->
+ <nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.inputmethodservice.InputMethodService
+</A></nobr><br>
+<!-- Method onKeyLongPress -->
+ <nobr><A HREF="android.view.KeyEvent.Callback.html#android.view.KeyEvent.Callback.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.view.KeyEvent.Callback
+</A></nobr><br>
+<!-- Method onKeyLongPress -->
+ <nobr><A HREF="android.view.View.html#android.view.View.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.view.View
+</A></nobr><br>
+<!-- Method onQueryPackageManager -->
+<nobr><A HREF="android.app.LauncherActivity.html#android.app.LauncherActivity.onQueryPackageManager_added(android.content.Intent)" class="hiddenlink" target="rightframe"><b>onQueryPackageManager</b>
+(<code>Intent</code>)</A></nobr><br>
+<!-- Method onSetContentView -->
+<nobr><A HREF="android.app.LauncherActivity.html#android.app.LauncherActivity.onSetContentView_added()" class="hiddenlink" target="rightframe"><b>onSetContentView</b>
+()</A></nobr><br>
+<!-- Method onSignalStrengthChanged -->
+<nobr><A HREF="android.telephony.PhoneStateListener.html#android.telephony.PhoneStateListener.onSignalStrengthChanged_changed(int)" class="hiddenlink" target="rightframe">onSignalStrengthChanged
+(<code>int</code>)</A></nobr><br>
+<!-- Method onStart -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.onStart_changed(android.content.Intent, int)" class="hiddenlink" target="rightframe">onStart
+(<code>Intent, int</code>)</A></nobr><br>
+<!-- Method onStartCommand -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.onStartCommand_added(android.content.Intent, int, int)" class="hiddenlink" target="rightframe"><b>onStartCommand</b>
+(<code>Intent, int, int</code>)</A></nobr><br>
+<!-- Method openContactPhotoInputStream -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.openContactPhotoInputStream_changed(android.content.ContentResolver, android.net.Uri)" class="hiddenlink" target="rightframe">openContactPhotoInputStream
+(<code>ContentResolver, Uri</code>)</A></nobr><br>
+<!-- Class OperationApplicationException -->
+<A HREF="pkg_android.content.html#OperationApplicationException" class="hiddenlink" target="rightframe"><b>OperationApplicationException</b></A><br>
+<!-- Method overridePendingTransition -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.overridePendingTransition_added(int, int)" class="hiddenlink" target="rightframe"><b>overridePendingTransition</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Class PackageInfo -->
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.content.pm.PackageInfo.html" class="hiddenlink" target="rightframe">PackageInfo</A><br>
+<!-- Class PackageManager -->
+<A HREF="android.content.pm.PackageManager.html" class="hiddenlink" target="rightframe">PackageManager</A><br>
+<!-- Class Pair -->
+<A HREF="pkg_android.util.html#Pair" class="hiddenlink" target="rightframe"><b>Pair</b></A><br>
+<!-- Class ParcelUuid -->
+<A HREF="pkg_android.os.html#ParcelUuid" class="hiddenlink" target="rightframe"><b>ParcelUuid</b></A><br>
+<!-- Method peekWallpaper -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.peekWallpaper_changed()" class="hiddenlink" target="rightframe">peekWallpaper
+()</A></nobr><br>
+<!-- Field PERSON_ID -->
+<i>PERSON_ID</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+<!-- Field PERSON_ID -->
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+<!-- Field PERSON_ID -->
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+<!-- Field PERSON_ID -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field PERSON_ID -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.Extensions.html#android.provider.Contacts.People.Extensions.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Extensions</A>
+</nobr><br>
+<!-- Field PERSON_ID -->
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<!-- Field PERSON_ID -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.PhotosColumns</A>
+</nobr><br>
+<!-- Field PHONE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONE" class="hiddenlink" target="rightframe">PHONE</A>
+</nobr><br>
+<!-- Field PHONE_ISPRIMARY -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONE_ISPRIMARY" class="hiddenlink" target="rightframe">PHONE_ISPRIMARY</A>
+</nobr><br>
+<!-- Field PHONE_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONE_TYPE" class="hiddenlink" target="rightframe">PHONE_TYPE</A>
+</nobr><br>
+<!-- Field PHONE_TYPE_CDMA -->
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.PHONE_TYPE_CDMA" class="hiddenlink" target="rightframe">PHONE_TYPE_CDMA</A>
+</nobr><br>
+<!-- Class PhoneNumberUtils -->
+<A HREF="android.telephony.PhoneNumberUtils.html" class="hiddenlink" target="rightframe">PhoneNumberUtils</A><br>
+<!-- Class PhoneStateListener -->
+<A HREF="android.telephony.PhoneStateListener.html" class="hiddenlink" target="rightframe">PhoneStateListener</A><br>
+<!-- Field PHONETIC_NAME -->
+<i>PHONETIC_NAME</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONETIC_NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+<!-- Field PHONETIC_NAME -->
+ in
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.PHONETIC_NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.PeopleColumns</A>
+</nobr><br>
+<!-- Field PHOTO_VERSION -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.PHOTO_VERSION" class="hiddenlink" target="rightframe">PHOTO_VERSION</A>
+</nobr><br>
+<!-- Class PixelFormat -->
+<A HREF="android.graphics.PixelFormat.html" class="hiddenlink" target="rightframe">PixelFormat</A><br>
+<!-- Class Plugin -->
+<i>Plugin</i><br>
+ <A HREF="android.webkit.Plugin.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<!-- Constructor Plugin -->
+ <nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.ctor_changed(java.lang.String, java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">Plugin
+(<code>String, String, String, String</code>)</A></nobr> constructor<br>
+<!-- Method pluginClicked -->
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.pluginClicked_changed(android.content.Context, int)" class="hiddenlink" target="rightframe">pluginClicked
+(<code>Context, int</code>)</A></nobr><br>
+<!-- Class PluginData -->
+<i>PluginData</i><br>
+ <A HREF="android.webkit.PluginData.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<!-- Constructor PluginData -->
+ <nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.ctor_changed(java.io.InputStream, long, java.util.Map<java.lang.String, java.lang.String[]>, int)" class="hiddenlink" target="rightframe">PluginData
+(<code>InputStream, long, Map<String, String[]>, int</code>)</A></nobr> constructor<br>
+<!-- Class PluginList -->
+<i>PluginList</i><br>
+ <A HREF="android.webkit.PluginList.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<!-- Constructor PluginList -->
+ <nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.ctor_changed()" class="hiddenlink" target="rightframe">PluginList
+()</A></nobr> constructor<br>
+<!-- Class PluginStub -->
+<A HREF="pkg_android.webkit.html#PluginStub" class="hiddenlink" target="rightframe"><b><i>PluginStub</i></b></A><br>
+<!-- Field POSTAL -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.POSTAL" class="hiddenlink" target="rightframe">POSTAL</A>
+</nobr><br>
+<!-- Field POSTAL_ISPRIMARY -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.POSTAL_ISPRIMARY" class="hiddenlink" target="rightframe">POSTAL_ISPRIMARY</A>
+</nobr><br>
+<!-- Field POSTAL_LOCATION_LATITUDE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.POSTAL_LOCATION_LATITUDE" class="hiddenlink" target="rightframe">POSTAL_LOCATION_LATITUDE</A>
+</nobr><br>
+<!-- Field POSTAL_LOCATION_LONGITUDE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.POSTAL_LOCATION_LONGITUDE" class="hiddenlink" target="rightframe">POSTAL_LOCATION_LONGITUDE</A>
+</nobr><br>
+<!-- Field POSTAL_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.POSTAL_TYPE" class="hiddenlink" target="rightframe">POSTAL_TYPE</A>
+</nobr><br>
+<!-- Method postUrl -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.postUrl_added(java.lang.String, byte[])" class="hiddenlink" target="rightframe"><b>postUrl</b>
+(<code>String, byte[]</code>)</A></nobr><br>
+<!-- Class PotentialDeadlockError -->
+<A HREF="dalvik.system.PotentialDeadlockError.html" class="hiddenlink" target="rightframe">PotentialDeadlockError</A><br>
+<!-- Field PRIMARY_EMAIL_ID -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.PRIMARY_EMAIL_ID" class="hiddenlink" target="rightframe">PRIMARY_EMAIL_ID</A>
+</nobr><br>
+<!-- Field PRIMARY_ORGANIZATION_ID -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.PRIMARY_ORGANIZATION_ID" class="hiddenlink" target="rightframe">PRIMARY_ORGANIZATION_ID</A>
+</nobr><br>
+<!-- Field PRIMARY_PHONE_ID -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.PRIMARY_PHONE_ID" class="hiddenlink" target="rightframe">PRIMARY_PHONE_ID</A>
+</nobr><br>
+<!-- Field PROTOCOL_AIM -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_AIM" class="hiddenlink" target="rightframe">PROTOCOL_AIM</A>
+</nobr><br>
+<!-- Field PROTOCOL_GOOGLE_TALK -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_GOOGLE_TALK" class="hiddenlink" target="rightframe">PROTOCOL_GOOGLE_TALK</A>
+</nobr><br>
+<!-- Field PROTOCOL_ICQ -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_ICQ" class="hiddenlink" target="rightframe">PROTOCOL_ICQ</A>
+</nobr><br>
+<!-- Field PROTOCOL_JABBER -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_JABBER" class="hiddenlink" target="rightframe">PROTOCOL_JABBER</A>
+</nobr><br>
+<!-- Field PROTOCOL_MSN -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_MSN" class="hiddenlink" target="rightframe">PROTOCOL_MSN</A>
+</nobr><br>
+<!-- Field PROTOCOL_QQ -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_QQ" class="hiddenlink" target="rightframe">PROTOCOL_QQ</A>
+</nobr><br>
+<!-- Field PROTOCOL_SKYPE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_SKYPE" class="hiddenlink" target="rightframe">PROTOCOL_SKYPE</A>
+</nobr><br>
+<!-- Field PROTOCOL_YAHOO -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_YAHOO" class="hiddenlink" target="rightframe">PROTOCOL_YAHOO</A>
+</nobr><br>
+<!-- Class ProviderInfo -->
+<A HREF="android.content.pm.ProviderInfo.html" class="hiddenlink" target="rightframe">ProviderInfo</A><br>
+<!-- Method queryGroups -->
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.queryGroups_changed(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe">queryGroups
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<!-- Class QuickContactBadge -->
+<A HREF="pkg_android.widget.html#QuickContactBadge" class="hiddenlink" target="rightframe"><b>QuickContactBadge</b></A><br>
+<!-- Method quit -->
+<nobr><A HREF="android.os.HandlerThread.html#android.os.HandlerThread.quit_added()" class="hiddenlink" target="rightframe"><b>quit</b>
+()</A></nobr><br>
+<!-- Class R.attr -->
+<A NAME="R"></A>
+<br><font size="+2">R</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.R.attr.html" class="hiddenlink" target="rightframe">R.attr</A><br>
+<!-- Class R.drawable -->
+<A HREF="android.R.drawable.html" class="hiddenlink" target="rightframe">R.drawable</A><br>
+<!-- Class R.style -->
+<A HREF="android.R.style.html" class="hiddenlink" target="rightframe">R.style</A><br>
+<!-- Field RAW_CONTENT_URI -->
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.RAW_CONTENT_URI" class="hiddenlink" target="rightframe">RAW_CONTENT_URI</A>
+</nobr><br>
+<!-- Method readExceptionWithOperationApplicationExceptionFromParcel -->
+<nobr><A HREF="android.database.DatabaseUtils.html#android.database.DatabaseUtils.readExceptionWithOperationApplicationExceptionFromParcel_added(android.os.Parcel)" class="hiddenlink" target="rightframe"><b>readExceptionWithOperationApplicationExceptionFromParcel</b>
+(<code>Parcel</code>)</A></nobr><br>
+<!-- Method readFromParcel -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.readFromParcel_added(android.os.Parcel)" class="hiddenlink" target="rightframe"><b>readFromParcel</b>
+(<code>Parcel</code>)</A></nobr><br>
+<!-- Field REASON_PROVIDER_IN_USE -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.REASON_PROVIDER_IN_USE" class="hiddenlink" target="rightframe">REASON_PROVIDER_IN_USE</A>
+</nobr><br>
+<!-- Field REASON_SERVICE_IN_USE -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.REASON_SERVICE_IN_USE" class="hiddenlink" target="rightframe">REASON_SERVICE_IN_USE</A>
+</nobr><br>
+<!-- Field REASON_UNKNOWN -->
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.REASON_UNKNOWN" class="hiddenlink" target="rightframe">REASON_UNKNOWN</A>
+</nobr><br>
+<!-- Method refreshPlugins -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.refreshPlugins_changed(boolean)" class="hiddenlink" target="rightframe">refreshPlugins
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method registerHandler -->
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.registerHandler_changed(android.webkit.UrlInterceptHandler)" class="hiddenlink" target="rightframe">registerHandler
+(<code>UrlInterceptHandler</code>)</A></nobr><br>
+<!-- Method remove -->
+<nobr><A HREF="java.util.concurrent.BlockingQueue.html#java.util.concurrent.BlockingQueue.remove_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>remove</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Method removeGpsData -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.removeGpsData_added()" class="hiddenlink" target="rightframe"><b>removeGpsData</b>
+()</A></nobr><br>
+<!-- Method removeNmeaListener -->
+<nobr><A HREF="android.location.LocationManager.html#android.location.LocationManager.removeNmeaListener_added(android.location.GpsStatus.NmeaListener)" class="hiddenlink" target="rightframe"><b>removeNmeaListener</b>
+(<code>NmeaListener</code>)</A></nobr><br>
+<!-- Method removePlugin -->
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.removePlugin_changed(android.webkit.Plugin)" class="hiddenlink" target="rightframe">removePlugin
+(<code>Plugin</code>)</A></nobr><br>
+<!-- Method removeStatusChangeListener -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.removeStatusChangeListener_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>removeStatusChangeListener</b>
+(<code>Object</code>)</A></nobr><br>
+<!-- Field reqFeatures -->
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.reqFeatures" class="hiddenlink" target="rightframe">reqFeatures</A>
+</nobr><br>
+<!-- Method requestSync -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.requestSync_added(android.accounts.Account, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>requestSync</b>
+(<code>Account, String, Bundle</code>)</A></nobr><br>
+<!-- Field required -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.required" class="hiddenlink" target="rightframe">required</A>
+</nobr><br>
+<!-- Class ResolveInfo -->
+<A HREF="android.content.pm.ResolveInfo.html" class="hiddenlink" target="rightframe">ResolveInfo</A><br>
+<!-- Field resolvePackageName -->
+<nobr><A HREF="android.content.pm.ResolveInfo.html#android.content.pm.ResolveInfo.resolvePackageName" class="hiddenlink" target="rightframe">resolvePackageName</A>
+</nobr><br>
+<!-- Field restoreNeedsApplication -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.restoreNeedsApplication" class="hiddenlink" target="rightframe">restoreNeedsApplication</A>
+</nobr><br>
+<!-- Field ROUTE_ALL -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_ALL" class="hiddenlink" target="rightframe">ROUTE_ALL</A>
+</nobr><br>
+<!-- Field ROUTE_BLUETOOTH_A2DP -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_BLUETOOTH_A2DP" class="hiddenlink" target="rightframe">ROUTE_BLUETOOTH_A2DP</A>
+</nobr><br>
+<!-- Field ROUTE_BLUETOOTH_SCO -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_BLUETOOTH_SCO" class="hiddenlink" target="rightframe">ROUTE_BLUETOOTH_SCO</A>
+</nobr><br>
+<!-- Field ROUTE_EARPIECE -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_EARPIECE" class="hiddenlink" target="rightframe">ROUTE_EARPIECE</A>
+</nobr><br>
+<!-- Field ROUTE_HEADSET -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_HEADSET" class="hiddenlink" target="rightframe">ROUTE_HEADSET</A>
+</nobr><br>
+<!-- Field ROUTE_SPEAKER -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_SPEAKER" class="hiddenlink" target="rightframe">ROUTE_SPEAKER</A>
+</nobr><br>
+<!-- Field SCENE_MODE_ACTION -->
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_ACTION" class="hiddenlink" target="rightframe">SCENE_MODE_ACTION</A>
+</nobr><br>
+<!-- Field SCENE_MODE_AUTO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_AUTO" class="hiddenlink" target="rightframe">SCENE_MODE_AUTO</A>
+</nobr><br>
+<!-- Field SCENE_MODE_BEACH -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_BEACH" class="hiddenlink" target="rightframe">SCENE_MODE_BEACH</A>
+</nobr><br>
+<!-- Field SCENE_MODE_CANDLELIGHT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_CANDLELIGHT" class="hiddenlink" target="rightframe">SCENE_MODE_CANDLELIGHT</A>
+</nobr><br>
+<!-- Field SCENE_MODE_FIREWORKS -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_FIREWORKS" class="hiddenlink" target="rightframe">SCENE_MODE_FIREWORKS</A>
+</nobr><br>
+<!-- Field SCENE_MODE_LANDSCAPE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_LANDSCAPE" class="hiddenlink" target="rightframe">SCENE_MODE_LANDSCAPE</A>
+</nobr><br>
+<!-- Field SCENE_MODE_NIGHT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_NIGHT" class="hiddenlink" target="rightframe">SCENE_MODE_NIGHT</A>
+</nobr><br>
+<!-- Field SCENE_MODE_NIGHT_PORTRAIT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_NIGHT_PORTRAIT" class="hiddenlink" target="rightframe">SCENE_MODE_NIGHT_PORTRAIT</A>
+</nobr><br>
+<!-- Field SCENE_MODE_PARTY -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_PARTY" class="hiddenlink" target="rightframe">SCENE_MODE_PARTY</A>
+</nobr><br>
+<!-- Field SCENE_MODE_PORTRAIT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_PORTRAIT" class="hiddenlink" target="rightframe">SCENE_MODE_PORTRAIT</A>
+</nobr><br>
+<!-- Field SCENE_MODE_SNOW -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_SNOW" class="hiddenlink" target="rightframe">SCENE_MODE_SNOW</A>
+</nobr><br>
+<!-- Field SCENE_MODE_SPORTS -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_SPORTS" class="hiddenlink" target="rightframe">SCENE_MODE_SPORTS</A>
+</nobr><br>
+<!-- Field SCENE_MODE_STEADYPHOTO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_STEADYPHOTO" class="hiddenlink" target="rightframe">SCENE_MODE_STEADYPHOTO</A>
+</nobr><br>
+<!-- Field SCENE_MODE_SUNSET -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_SUNSET" class="hiddenlink" target="rightframe">SCENE_MODE_SUNSET</A>
+</nobr><br>
+<!-- Field SCENE_MODE_THEATRE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_THEATRE" class="hiddenlink" target="rightframe">SCENE_MODE_THEATRE</A>
+</nobr><br>
+<!-- Field screen_background_dark_transparent -->
+<nobr><A HREF="android.R.drawable.html#android.R.drawable.screen_background_dark_transparent" class="hiddenlink" target="rightframe">screen_background_dark_transparent</A>
+</nobr><br>
+<!-- Field screen_background_light_transparent -->
+<nobr><A HREF="android.R.drawable.html#android.R.drawable.screen_background_light_transparent" class="hiddenlink" target="rightframe">screen_background_light_transparent</A>
+</nobr><br>
+<!-- Field scrollbarDefaultDelayBeforeFade -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.scrollbarDefaultDelayBeforeFade" class="hiddenlink" target="rightframe">scrollbarDefaultDelayBeforeFade</A>
+</nobr><br>
+<!-- Field scrollbarFadeDuration -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.scrollbarFadeDuration" class="hiddenlink" target="rightframe">scrollbarFadeDuration</A>
+</nobr><br>
+<!-- Field SEARCH_SUGGESTION_CLICKED -->
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SEARCH_SUGGESTION_CLICKED" class="hiddenlink" target="rightframe">SEARCH_SUGGESTION_CLICKED</A>
+</nobr><br>
+<!-- Field SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED -->
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED" class="hiddenlink" target="rightframe">SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED</A>
+</nobr><br>
+<!-- Field SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED -->
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED" class="hiddenlink" target="rightframe">SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED</A>
+</nobr><br>
+<!-- Class SearchManager -->
+<A HREF="android.app.SearchManager.html" class="hiddenlink" target="rightframe">SearchManager</A><br>
+<!-- Field SECONDARY_EMAIL -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL" class="hiddenlink" target="rightframe">SECONDARY_EMAIL</A>
+</nobr><br>
+<!-- Field SECONDARY_EMAIL_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL_TYPE" class="hiddenlink" target="rightframe">SECONDARY_EMAIL_TYPE</A>
+</nobr><br>
+<!-- Field SECONDARY_PHONE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_PHONE" class="hiddenlink" target="rightframe">SECONDARY_PHONE</A>
+</nobr><br>
+<!-- Field SECONDARY_PHONE_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_PHONE_TYPE" class="hiddenlink" target="rightframe">SECONDARY_PHONE_TYPE</A>
+</nobr><br>
+<!-- Field SEND_TO_VOICEMAIL -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.SEND_TO_VOICEMAIL" class="hiddenlink" target="rightframe">SEND_TO_VOICEMAIL</A>
+</nobr><br>
+<!-- Method sendStickyOrderedBroadcast -->
+<i>sendStickyOrderedBroadcast</i><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</b> in android.content.Context
+</A></nobr><br>
+<!-- Method sendStickyOrderedBroadcast -->
+ <nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</b> in android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method sendStickyOrderedBroadcast -->
+ <nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</b> in android.test.mock.MockContext
+</A></nobr><br>
+<!-- Class Service -->
+<A HREF="android.app.Service.html" class="hiddenlink" target="rightframe">Service</A><br>
+<!-- Class ServiceInfo -->
+<A HREF="android.content.pm.ServiceInfo.html" class="hiddenlink" target="rightframe">ServiceInfo</A><br>
+<!-- Method setAntibanding -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setAntibanding_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setAntibanding</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setBluetoothA2dpOn -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.setBluetoothA2dpOn_changed(boolean)" class="hiddenlink" target="rightframe">setBluetoothA2dpOn
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setCid -->
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.setCid_changed(int)" class="hiddenlink" target="rightframe">setCid
+(<code>int</code>)</A></nobr><br>
+<!-- Method setClickHandler -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setClickHandler_changed(android.webkit.Plugin.PreferencesClickHandler)" class="hiddenlink" target="rightframe">setClickHandler
+(<code>PreferencesClickHandler</code>)</A></nobr><br>
+<!-- Method setColorEffect -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setColorEffect_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setColorEffect</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setDatabaseEnabled -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setDatabaseEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setDatabaseEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setDatabasePath -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setDatabasePath_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDatabasePath</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setDescription -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setDescription_changed(java.lang.String)" class="hiddenlink" target="rightframe">setDescription
+(<code>String</code>)</A></nobr><br>
+<!-- Method setDetachWallpaper -->
+<nobr><A HREF="android.view.animation.Animation.html#android.view.animation.Animation.setDetachWallpaper_added(boolean)" class="hiddenlink" target="rightframe"><b>setDetachWallpaper</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setDropDownBackgroundDrawable -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownBackgroundDrawable_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setDropDownBackgroundDrawable</b>
+(<code>Drawable</code>)</A></nobr><br>
+<!-- Method setDropDownBackgroundResource -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownBackgroundResource_added(int)" class="hiddenlink" target="rightframe"><b>setDropDownBackgroundResource</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setDropDownHorizontalOffset -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownHorizontalOffset_added(int)" class="hiddenlink" target="rightframe"><b>setDropDownHorizontalOffset</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setDropDownVerticalOffset -->
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownVerticalOffset_added(int)" class="hiddenlink" target="rightframe"><b>setDropDownVerticalOffset</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setEGLContextFactory -->
+<nobr><A HREF="android.opengl.GLSurfaceView.html#android.opengl.GLSurfaceView.setEGLContextFactory_added(android.opengl.GLSurfaceView.EGLContextFactory)" class="hiddenlink" target="rightframe"><b>setEGLContextFactory</b>
+(<code>EGLContextFactory</code>)</A></nobr><br>
+<!-- Method setEGLWindowSurfaceFactory -->
+<nobr><A HREF="android.opengl.GLSurfaceView.html#android.opengl.GLSurfaceView.setEGLWindowSurfaceFactory_added(android.opengl.GLSurfaceView.EGLWindowSurfaceFactory)" class="hiddenlink" target="rightframe"><b>setEGLWindowSurfaceFactory</b>
+(<code>EGLWindowSurfaceFactory</code>)</A></nobr><br>
+<!-- Method setFileName -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setFileName_changed(java.lang.String)" class="hiddenlink" target="rightframe">setFileName
+(<code>String</code>)</A></nobr><br>
+<!-- Method setFlashMode -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setFlashMode_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setFlashMode</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setFocusMode -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setFocusMode_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setFocusMode</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setForeground -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.setForeground_changed(boolean)" class="hiddenlink" target="rightframe">setForeground
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setGeolocationDatabasePath -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setGeolocationDatabasePath_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setGeolocationDatabasePath</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setGeolocationEnabled -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setGeolocationEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setGeolocationEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setGpsAltitude -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsAltitude_added(double)" class="hiddenlink" target="rightframe"><b>setGpsAltitude</b>
+(<code>double</code>)</A></nobr><br>
+<!-- Method setGpsLatitude -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsLatitude_added(double)" class="hiddenlink" target="rightframe"><b>setGpsLatitude</b>
+(<code>double</code>)</A></nobr><br>
+<!-- Method setGpsLongitude -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsLongitude_added(double)" class="hiddenlink" target="rightframe"><b>setGpsLongitude</b>
+(<code>double</code>)</A></nobr><br>
+<!-- Method setGpsTimestamp -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsTimestamp_added(long)" class="hiddenlink" target="rightframe"><b>setGpsTimestamp</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Method setInstrumentaiton -->
+<nobr><A HREF="android.test.AndroidTestRunner.html#android.test.AndroidTestRunner.setInstrumentaiton_changed(android.app.Instrumentation)" class="hiddenlink" target="rightframe">setInstrumentaiton
+(<code>Instrumentation</code>)</A></nobr><br>
+<!-- Method setInstrumentation -->
+<nobr><A HREF="android.test.AndroidTestRunner.html#android.test.AndroidTestRunner.setInstrumentation_added(android.app.Instrumentation)" class="hiddenlink" target="rightframe"><b>setInstrumentation</b>
+(<code>Instrumentation</code>)</A></nobr><br>
+<!-- Method setIntentRedelivery -->
+<nobr><A HREF="android.app.IntentService.html#android.app.IntentService.setIntentRedelivery_added(boolean)" class="hiddenlink" target="rightframe"><b>setIntentRedelivery</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setIsSyncable -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.setIsSyncable_added(android.accounts.Account, java.lang.String, int)" class="hiddenlink" target="rightframe"><b>setIsSyncable</b>
+(<code>Account, String, int</code>)</A></nobr><br>
+<!-- Method setJpegQuality -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setJpegQuality_added(int)" class="hiddenlink" target="rightframe"><b>setJpegQuality</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setJpegThumbnailQuality -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setJpegThumbnailQuality_added(int)" class="hiddenlink" target="rightframe"><b>setJpegThumbnailQuality</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setJpegThumbnailSize -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setJpegThumbnailSize_added(int, int)" class="hiddenlink" target="rightframe"><b>setJpegThumbnailSize</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method setMasterSyncAutomatically -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.setMasterSyncAutomatically_added(boolean)" class="hiddenlink" target="rightframe"><b>setMasterSyncAutomatically</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setName -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setName_changed(java.lang.String)" class="hiddenlink" target="rightframe">setName
+(<code>String</code>)</A></nobr><br>
+<!-- Method setParameters -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.setParameters_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setParameters</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setPath -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setPath_changed(java.lang.String)" class="hiddenlink" target="rightframe">setPath
+(<code>String</code>)</A></nobr><br>
+<!-- Method setPhotoData -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.setPhotoData_changed(android.content.ContentResolver, android.net.Uri, byte[])" class="hiddenlink" target="rightframe">setPhotoData
+(<code>ContentResolver, Uri, byte[]</code>)</A></nobr><br>
+<!-- Method setRotation -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setRotation_added(int)" class="hiddenlink" target="rightframe"><b>setRotation</b>
+(<code>int</code>)</A></nobr><br>
+<!-- Method setRssi -->
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.setRssi_changed(int)" class="hiddenlink" target="rightframe">setRssi
+(<code>int</code>)</A></nobr><br>
+<!-- Method setSceneMode -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setSceneMode_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setSceneMode</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setScrollbarFadingEnabled -->
+<nobr><A HREF="android.view.View.html#android.view.View.setScrollbarFadingEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setScrollbarFadingEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setSetting -->
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.setSetting_changed(android.content.ContentResolver, java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">setSetting
+(<code>ContentResolver, String, String, String</code>)</A></nobr><br>
+<!-- Method setSyncAutomatically -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.setSyncAutomatically_added(android.accounts.Account, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setSyncAutomatically</b>
+(<code>Account, String, boolean</code>)</A></nobr><br>
+<!-- Class Settings -->
+<A HREF="android.provider.Settings.html" class="hiddenlink" target="rightframe">Settings</A><br>
+<!-- Class Settings.System -->
+<A HREF="android.provider.Settings.System.html" class="hiddenlink" target="rightframe">Settings.System</A><br>
+<!-- Method setUrlInterceptDisabled -->
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.setUrlInterceptDisabled_changed(boolean)" class="hiddenlink" target="rightframe">setUrlInterceptDisabled
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setUseDoubleTree -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setUseDoubleTree_changed(boolean)" class="hiddenlink" target="rightframe">setUseDoubleTree
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setViewBinder -->
+<nobr><A HREF="android.widget.SimpleCursorTreeAdapter.html#android.widget.SimpleCursorTreeAdapter.setViewBinder_added(android.widget.SimpleCursorTreeAdapter.ViewBinder)" class="hiddenlink" target="rightframe"><b>setViewBinder</b>
+(<code>ViewBinder</code>)</A></nobr><br>
+<!-- Method setViewText -->
+<nobr><A HREF="android.widget.SimpleCursorTreeAdapter.html#android.widget.SimpleCursorTreeAdapter.setViewText_added(android.widget.TextView, java.lang.String)" class="hiddenlink" target="rightframe"><b>setViewText</b>
+(<code>TextView, String</code>)</A></nobr><br>
+<!-- Method setWallpaper -->
+<i>setWallpaper</i><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.setWallpaper_changed(android.graphics.Bitmap)" class="hiddenlink" target="rightframe">type
+(<code>Bitmap</code>) in android.content.Context
+</A></nobr><br>
+<!-- Method setWallpaper -->
+ <nobr><A HREF="android.content.Context.html#android.content.Context.setWallpaper_changed(java.io.InputStream)" class="hiddenlink" target="rightframe">type
+(<code>InputStream</code>) in android.content.Context
+</A></nobr><br>
+<!-- Method setWhiteBalance -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setWhiteBalance_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setWhiteBalance</b>
+(<code>String</code>)</A></nobr><br>
+<!-- Method setWiredHeadsetOn -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.setWiredHeadsetOn_added(boolean)" class="hiddenlink" target="rightframe"><b>setWiredHeadsetOn</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setZOrderMediaOverlay -->
+<nobr><A HREF="android.view.SurfaceView.html#android.view.SurfaceView.setZOrderMediaOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setZOrderMediaOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setZOrderOnTop -->
+<nobr><A HREF="android.view.SurfaceView.html#android.view.SurfaceView.setZOrderOnTop_added(boolean)" class="hiddenlink" target="rightframe"><b>setZOrderOnTop</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Field SHOULD_SYNC -->
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.SHOULD_SYNC" class="hiddenlink" target="rightframe">SHOULD_SYNC</A>
+</nobr><br>
+<!-- Field SHOW_OR_CREATE_CONTACT -->
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SHOW_OR_CREATE_CONTACT" class="hiddenlink" target="rightframe">SHOW_OR_CREATE_CONTACT</A>
+</nobr><br>
+<!-- Class SimpleCursorTreeAdapter -->
+<A HREF="android.widget.SimpleCursorTreeAdapter.html" class="hiddenlink" target="rightframe">SimpleCursorTreeAdapter</A><br>
+<!-- Class SimpleCursorTreeAdapter.ViewBinder -->
+<A HREF="pkg_android.widget.html#SimpleCursorTreeAdapter.ViewBinder" class="hiddenlink" target="rightframe"><b><i>SimpleCursorTreeAdapter.ViewBinder</i></b></A><br>
+<!-- Field smallIcon -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.smallIcon" class="hiddenlink" target="rightframe">smallIcon</A>
+</nobr><br>
+<!-- Class Socket -->
+<i>Socket</i><br>
+ <A HREF="java.net.Socket.html" class="hiddenlink" target="rightframe">java.net</A><br>
+<!-- Constructor Socket -->
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed()" class="hiddenlink" target="rightframe">Socket
+()</A></nobr> constructor<br>
+<!-- Constructor Socket -->
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.lang.String, int)" class="hiddenlink" target="rightframe">Socket
+(<code>String, int</code>)</A></nobr> constructor<br>
+<!-- Constructor Socket -->
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.lang.String, int, java.net.InetAddress, int)" class="hiddenlink" target="rightframe">Socket
+(<code>String, int, InetAddress, int</code>)</A></nobr> constructor<br>
+<!-- Constructor Socket -->
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.net.Proxy)" class="hiddenlink" target="rightframe">Socket
+(<code>Proxy</code>)</A></nobr> constructor<br>
+<!-- Constructor Socket -->
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.net.SocketImpl)" class="hiddenlink" target="rightframe">Socket
+(<code>SocketImpl</code>)</A></nobr> constructor<br>
+<!-- Class SQLiteDatabase -->
+<A HREF="android.database.sqlite.SQLiteDatabase.html" class="hiddenlink" target="rightframe">SQLiteDatabase</A><br>
+<!-- Class SQLiteTransactionListener -->
+<A HREF="pkg_android.database.sqlite.html#SQLiteTransactionListener" class="hiddenlink" target="rightframe"><b><i>SQLiteTransactionListener</i></b></A><br>
+<!-- Class StaleDexCacheError -->
+<A HREF="dalvik.system.StaleDexCacheError.html" class="hiddenlink" target="rightframe">StaleDexCacheError</A><br>
+<!-- Field STARRED -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.STARRED" class="hiddenlink" target="rightframe">STARRED</A>
+</nobr><br>
+<!-- Field START_CONTINUATION_MASK -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_CONTINUATION_MASK" class="hiddenlink" target="rightframe">START_CONTINUATION_MASK</A>
+</nobr><br>
+<!-- Field START_FLAG_REDELIVERY -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_FLAG_REDELIVERY" class="hiddenlink" target="rightframe">START_FLAG_REDELIVERY</A>
+</nobr><br>
+<!-- Field START_FLAG_RETRY -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_FLAG_RETRY" class="hiddenlink" target="rightframe">START_FLAG_RETRY</A>
+</nobr><br>
+<!-- Field START_NOT_STICKY -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_NOT_STICKY" class="hiddenlink" target="rightframe">START_NOT_STICKY</A>
+</nobr><br>
+<!-- Field START_REDELIVER_INTENT -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_REDELIVER_INTENT" class="hiddenlink" target="rightframe">START_REDELIVER_INTENT</A>
+</nobr><br>
+<!-- Field START_STICKY -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_STICKY" class="hiddenlink" target="rightframe">START_STICKY</A>
+</nobr><br>
+<!-- Field START_STICKY_COMPATIBILITY -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_STICKY_COMPATIBILITY" class="hiddenlink" target="rightframe">START_STICKY_COMPATIBILITY</A>
+</nobr><br>
+<!-- Method startForeground -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.startForeground_added(int, android.app.Notification)" class="hiddenlink" target="rightframe"><b>startForeground</b>
+(<code>int, Notification</code>)</A></nobr><br>
+<!-- Method startIntentSender -->
+<i>startIntentSender</i><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>IntentSender, Intent, int, int, int</code>)</b> in android.content.Context
+</A></nobr><br>
+<!-- Method startIntentSender -->
+ <nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>IntentSender, Intent, int, int, int</code>)</b> in android.content.ContextWrapper
+</A></nobr><br>
+<!-- Method startIntentSender -->
+ <nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>IntentSender, Intent, int, int, int</code>)</b> in android.test.mock.MockContext
+</A></nobr><br>
+<!-- Method startIntentSenderForResult -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startIntentSenderForResult_added(android.content.IntentSender, int, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe"><b>startIntentSenderForResult</b>
+(<code>IntentSender, int, Intent, int, int, int</code>)</A></nobr><br>
+<!-- Method startIntentSenderFromChild -->
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startIntentSenderFromChild_added(android.app.Activity, android.content.IntentSender, int, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe"><b>startIntentSenderFromChild</b>
+(<code>Activity, IntentSender, int, Intent, int, int, int</code>)</A></nobr><br>
+<!-- Method startSync -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.startSync_changed(android.net.Uri, android.os.Bundle)" class="hiddenlink" target="rightframe">startSync
+(<code>Uri, Bundle</code>)</A></nobr><br>
+<!-- Method startTone -->
+<nobr><A HREF="android.media.ToneGenerator.html#android.media.ToneGenerator.startTone_added(int, int)" class="hiddenlink" target="rightframe"><b>startTone</b>
+(<code>int, int</code>)</A></nobr><br>
+<!-- Method startTracking -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.startTracking_added()" class="hiddenlink" target="rightframe"><b>startTracking</b>
+()</A></nobr><br>
+<!-- Field stat_notify_sdcard_prepare -->
+<nobr><A HREF="android.R.drawable.html#android.R.drawable.stat_notify_sdcard_prepare" class="hiddenlink" target="rightframe">stat_notify_sdcard_prepare</A>
+</nobr><br>
+<!-- Method stopForeground -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.stopForeground_added(boolean)" class="hiddenlink" target="rightframe"><b>stopForeground</b>
+(<code>boolean</code>)</A></nobr><br>
+<!-- Field STREAM_DTMF -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.STREAM_DTMF" class="hiddenlink" target="rightframe">STREAM_DTMF</A>
+</nobr><br>
+<!-- Class String -->
+<i>String</i><br>
+ <A HREF="java.lang.String.html" class="hiddenlink" target="rightframe">java.lang</A><br>
+<!-- Constructor String -->
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed()" class="hiddenlink" target="rightframe">String
+()</A></nobr> constructor<br>
+<!-- Constructor String -->
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[])" class="hiddenlink" target="rightframe">String
+(<code>byte[]</code>)</A></nobr> constructor<br>
+<!-- Constructor String -->
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[], int)" class="hiddenlink" target="rightframe">String
+(<code>byte[], int</code>)</A></nobr> constructor<br>
+<!-- Constructor String -->
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[], int, int)" class="hiddenlink" target="rightframe">String
+(<code>byte[], int, int</code>)</A></nobr> constructor<br>
+<!-- Constructor String -->
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[], int, int, int)" class="hiddenlink" target="rightframe">String
+(<code>byte[], int, int, int</code>)</A></nobr> constructor<br>
+<!-- Field SUGGEST_PARAMETER_LIMIT -->
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_PARAMETER_LIMIT" class="hiddenlink" target="rightframe">SUGGEST_PARAMETER_LIMIT</A>
+</nobr><br>
+<!-- Field summaryColumn -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.summaryColumn" class="hiddenlink" target="rightframe">summaryColumn</A>
+</nobr><br>
+<!-- Field supportsUploading -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.supportsUploading" class="hiddenlink" target="rightframe">supportsUploading</A>
+</nobr><br>
+<!-- Class Surface -->
+<A HREF="android.view.Surface.html" class="hiddenlink" target="rightframe">Surface</A><br>
+<!-- Field SURFACE_TYPE_GPU -->
+<nobr><A HREF="android.view.SurfaceHolder.html#android.view.SurfaceHolder.SURFACE_TYPE_GPU" class="hiddenlink" target="rightframe">SURFACE_TYPE_GPU</A>
+</nobr><br>
+<!-- Field SURFACE_TYPE_HARDWARE -->
+<nobr><A HREF="android.view.SurfaceHolder.html#android.view.SurfaceHolder.SURFACE_TYPE_HARDWARE" class="hiddenlink" target="rightframe">SURFACE_TYPE_HARDWARE</A>
+</nobr><br>
+<!-- Class SurfaceHolder -->
+<A HREF="android.view.SurfaceHolder.html" class="hiddenlink" target="rightframe"><i>SurfaceHolder</i></A><br>
+<!-- Class SurfaceView -->
+<A HREF="android.view.SurfaceView.html" class="hiddenlink" target="rightframe">SurfaceView</A><br>
+<!-- Field SYNC_ERROR -->
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.SYNC_ERROR" class="hiddenlink" target="rightframe">SYNC_ERROR</A>
+</nobr><br>
+<!-- Field SYNC_EVERYTHING -->
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.SYNC_EVERYTHING" class="hiddenlink" target="rightframe">SYNC_EVERYTHING</A>
+</nobr><br>
+<!-- Field SYNC_EXTRAS_ACCOUNT -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_ACCOUNT" class="hiddenlink" target="rightframe">SYNC_EXTRAS_ACCOUNT</A>
+</nobr><br>
+<!-- Field SYNC_EXTRAS_FORCE -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_FORCE" class="hiddenlink" target="rightframe">SYNC_EXTRAS_FORCE</A>
+</nobr><br>
+<!-- Field SYNC_EXTRAS_INITIALIZE -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_INITIALIZE" class="hiddenlink" target="rightframe">SYNC_EXTRAS_INITIALIZE</A>
+</nobr><br>
+<!-- Field SYNC_EXTRAS_MANUAL -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_MANUAL" class="hiddenlink" target="rightframe">SYNC_EXTRAS_MANUAL</A>
+</nobr><br>
+<!-- Class SyncAdapterType -->
+<A HREF="pkg_android.content.html#SyncAdapterType" class="hiddenlink" target="rightframe"><b>SyncAdapterType</b></A><br>
+<!-- Class SyncContext -->
+<A HREF="pkg_android.content.html#SyncContext" class="hiddenlink" target="rightframe"><b>SyncContext</b></A><br>
+<!-- Class SyncResult -->
+<A HREF="pkg_android.content.html#SyncResult" class="hiddenlink" target="rightframe"><b>SyncResult</b></A><br>
+<!-- Class SyncStateContract -->
+<A HREF="pkg_android.provider.html#SyncStateContract" class="hiddenlink" target="rightframe"><b>SyncStateContract</b></A><br>
+<!-- Class SyncStateContract.Columns -->
+<A HREF="pkg_android.provider.html#SyncStateContract.Columns" class="hiddenlink" target="rightframe"><b><i>SyncStateContract.Columns</i></b></A><br>
+<!-- Class SyncStateContract.Constants -->
+<A HREF="pkg_android.provider.html#SyncStateContract.Constants" class="hiddenlink" target="rightframe"><b>SyncStateContract.Constants</b></A><br>
+<!-- Class SyncStateContract.Helpers -->
+<A HREF="pkg_android.provider.html#SyncStateContract.Helpers" class="hiddenlink" target="rightframe"><b>SyncStateContract.Helpers</b></A><br>
+<!-- Class SyncStats -->
+<A HREF="pkg_android.content.html#SyncStats" class="hiddenlink" target="rightframe"><b>SyncStats</b></A><br>
+<!-- Class SyncStatusObserver -->
+<A HREF="pkg_android.content.html#SyncStatusObserver" class="hiddenlink" target="rightframe"><b><i>SyncStatusObserver</i></b></A><br>
+<!-- Field SYSTEM_ID -->
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.SYSTEM_ID" class="hiddenlink" target="rightframe">SYSTEM_ID</A>
+</nobr><br>
+<!-- Method takePicture -->
+<A NAME="T"></A>
+<br><font size="+2">T</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.takePicture_added(android.hardware.Camera.ShutterCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback)" class="hiddenlink" target="rightframe"><b>takePicture</b>
+(<code>ShutterCallback, PictureCallback, PictureCallback, PictureCallback</code>)</A></nobr><br>
+<!-- Class TelephonyManager -->
+<A HREF="android.telephony.TelephonyManager.html" class="hiddenlink" target="rightframe">TelephonyManager</A><br>
+<!-- Class TemporaryDirectory -->
+<A HREF="dalvik.system.TemporaryDirectory.html" class="hiddenlink" target="rightframe">TemporaryDirectory</A><br>
+<!-- Field TERTIARY_EMAIL -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_EMAIL" class="hiddenlink" target="rightframe">TERTIARY_EMAIL</A>
+</nobr><br>
+<!-- Field TERTIARY_EMAIL_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_EMAIL_TYPE" class="hiddenlink" target="rightframe">TERTIARY_EMAIL_TYPE</A>
+</nobr><br>
+<!-- Field TERTIARY_PHONE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_PHONE" class="hiddenlink" target="rightframe">TERTIARY_PHONE</A>
+</nobr><br>
+<!-- Field TERTIARY_PHONE_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_PHONE_TYPE" class="hiddenlink" target="rightframe">TERTIARY_PHONE_TYPE</A>
+</nobr><br>
+<!-- Field textAppearanceSearchResultSubtitle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceSearchResultSubtitle" class="hiddenlink" target="rightframe">textAppearanceSearchResultSubtitle</A>
+</nobr><br>
+<!-- Field textAppearanceSearchResultTitle -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceSearchResultTitle" class="hiddenlink" target="rightframe">textAppearanceSearchResultTitle</A>
+</nobr><br>
+<!-- Class TextPaint -->
+<A HREF="android.text.TextPaint.html" class="hiddenlink" target="rightframe">TextPaint</A><br>
+<!-- Field Theme_Light_WallpaperSettings -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Light_WallpaperSettings" class="hiddenlink" target="rightframe">Theme_Light_WallpaperSettings</A>
+</nobr><br>
+<!-- Field Theme_Wallpaper -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Wallpaper" class="hiddenlink" target="rightframe">Theme_Wallpaper</A>
+</nobr><br>
+<!-- Field Theme_Wallpaper_NoTitleBar -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Wallpaper_NoTitleBar" class="hiddenlink" target="rightframe">Theme_Wallpaper_NoTitleBar</A>
+</nobr><br>
+<!-- Field Theme_Wallpaper_NoTitleBar_Fullscreen -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Wallpaper_NoTitleBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Wallpaper_NoTitleBar_Fullscreen</A>
+</nobr><br>
+<!-- Field Theme_WallpaperSettings -->
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_WallpaperSettings" class="hiddenlink" target="rightframe">Theme_WallpaperSettings</A>
+</nobr><br>
+<!-- Field THUMB_DATA -->
+<nobr><A HREF="android.provider.MediaStore.Images.Thumbnails.html#android.provider.MediaStore.Images.Thumbnails.THUMB_DATA" class="hiddenlink" target="rightframe">THUMB_DATA</A>
+</nobr><br>
+<!-- Field thumbnail -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbnail" class="hiddenlink" target="rightframe">thumbnail</A>
+</nobr><br>
+<!-- Field TIMES_CONTACTED -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.TIMES_CONTACTED" class="hiddenlink" target="rightframe">TIMES_CONTACTED</A>
+</nobr><br>
+<!-- Field TITLE -->
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TITLE" class="hiddenlink" target="rightframe">TITLE</A>
+</nobr><br>
+<!-- Field TITLE_EXTRA_KEY -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.TITLE_EXTRA_KEY" class="hiddenlink" target="rightframe">TITLE_EXTRA_KEY</A>
+</nobr><br>
+<!-- Class ToneGenerator -->
+<A HREF="android.media.ToneGenerator.html" class="hiddenlink" target="rightframe">ToneGenerator</A><br>
+<!-- Class TouchDex -->
+<A HREF="dalvik.system.TouchDex.html" class="hiddenlink" target="rightframe">TouchDex</A><br>
+<!-- Method triggerSearch -->
+<i>triggerSearch</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.triggerSearch_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, Bundle</code>)</b> in android.app.Activity
+</A></nobr><br>
+<!-- Method triggerSearch -->
+ <nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.triggerSearch_added(java.lang.String, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, ComponentName, Bundle</code>)</b> in android.app.SearchManager
+</A></nobr><br>
+<!-- Field TYPE -->
+<i>TYPE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Field TYPE_CUSTOM -->
+<i>TYPE_CUSTOM</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_CUSTOM" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field TYPE_CUSTOM -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE_CUSTOM" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field TYPE_CUSTOM -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_CUSTOM" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Field TYPE_FAX_HOME -->
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_FAX_HOME" class="hiddenlink" target="rightframe">TYPE_FAX_HOME</A>
+</nobr><br>
+<!-- Field TYPE_FAX_WORK -->
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_FAX_WORK" class="hiddenlink" target="rightframe">TYPE_FAX_WORK</A>
+</nobr><br>
+<!-- Field TYPE_HOME -->
+<i>TYPE_HOME</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_HOME" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field TYPE_HOME -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_HOME" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Field TYPE_MOBILE -->
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_MOBILE" class="hiddenlink" target="rightframe">TYPE_MOBILE</A>
+</nobr><br>
+<!-- Field TYPE_OTHER -->
+<i>TYPE_OTHER</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_OTHER" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field TYPE_OTHER -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE_OTHER" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field TYPE_OTHER -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_OTHER" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Field TYPE_PAGER -->
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_PAGER" class="hiddenlink" target="rightframe">TYPE_PAGER</A>
+</nobr><br>
+<!-- Field TYPE_TEXT_FLAG_NO_SUGGESTIONS -->
+<nobr><A HREF="android.text.InputType.html#android.text.InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS" class="hiddenlink" target="rightframe">TYPE_TEXT_FLAG_NO_SUGGESTIONS</A>
+</nobr><br>
+<!-- Field TYPE_WALLPAPER -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.TYPE_WALLPAPER" class="hiddenlink" target="rightframe">TYPE_WALLPAPER</A>
+</nobr><br>
+<!-- Field TYPE_WORK -->
+<i>TYPE_WORK</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_WORK" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field TYPE_WORK -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE_WORK" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field TYPE_WORK -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_WORK" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Field uid -->
+<A NAME="U"></A>
+<br><font size="+2">U</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>uid</i><br>
+ in
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.uid" class="hiddenlink" target="rightframe">android.app.ActivityManager.RunningAppProcessInfo</A>
+</nobr><br>
+<!-- Field uid -->
+ in
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.uid" class="hiddenlink" target="rightframe">android.app.ActivityManager.RunningServiceInfo</A>
+</nobr><br>
+<!-- Method unlock -->
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.unlock_added()" class="hiddenlink" target="rightframe"><b>unlock</b>
+()</A></nobr><br>
+<!-- Method unregisterHandler -->
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.unregisterHandler_changed(android.webkit.UrlInterceptHandler)" class="hiddenlink" target="rightframe">unregisterHandler
+(<code>UrlInterceptHandler</code>)</A></nobr><br>
+<!-- Method urlInterceptDisabled -->
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.urlInterceptDisabled_changed()" class="hiddenlink" target="rightframe">urlInterceptDisabled
+()</A></nobr><br>
+<!-- Class UrlInterceptHandler -->
+<A HREF="android.webkit.UrlInterceptHandler.html" class="hiddenlink" target="rightframe"><i>UrlInterceptHandler</i></A><br>
+<!-- Class UrlInterceptRegistry -->
+<A HREF="android.webkit.UrlInterceptRegistry.html" class="hiddenlink" target="rightframe">UrlInterceptRegistry</A><br>
+<!-- Field USE_CREDENTIALS -->
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.USE_CREDENTIALS" class="hiddenlink" target="rightframe">USE_CREDENTIALS</A>
+</nobr><br>
+<!-- Field userVisible -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.userVisible" class="hiddenlink" target="rightframe">userVisible</A>
+</nobr><br>
+<!-- Field VALUE -->
+<A NAME="V"></A>
+<br><font size="+2">V</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>VALUE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ExtensionsColumns.html#android.provider.Contacts.ExtensionsColumns.VALUE" class="hiddenlink" target="rightframe">android.provider.Contacts.ExtensionsColumns</A>
+</nobr><br>
+<!-- Field VALUE -->
+ in
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns.VALUE" class="hiddenlink" target="rightframe">android.provider.Contacts.SettingsColumns</A>
+</nobr><br>
+<!-- Class VideoView -->
+<A HREF="android.widget.VideoView.html" class="hiddenlink" target="rightframe">VideoView</A><br>
+<!-- Class View -->
+<A HREF="android.view.View.html" class="hiddenlink" target="rightframe">View</A><br>
+<!-- Class ViewConfiguration -->
+<A HREF="android.view.ViewConfiguration.html" class="hiddenlink" target="rightframe">ViewConfiguration</A><br>
+<!-- Field VIRTUAL_KEY -->
+<nobr><A HREF="android.view.HapticFeedbackConstants.html#android.view.HapticFeedbackConstants.VIRTUAL_KEY" class="hiddenlink" target="rightframe">VIRTUAL_KEY</A>
+</nobr><br>
+<!-- Class VMDebug -->
+<A HREF="dalvik.system.VMDebug.html" class="hiddenlink" target="rightframe">VMDebug</A><br>
+<!-- Class VMRuntime -->
+<A HREF="dalvik.system.VMRuntime.html" class="hiddenlink" target="rightframe">VMRuntime</A><br>
+<!-- Class VMStack -->
+<A HREF="dalvik.system.VMStack.html" class="hiddenlink" target="rightframe">VMStack</A><br>
+<!-- Field wallpaperCloseEnterAnimation -->
+<A NAME="W"></A>
+<br><font size="+2">W</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperCloseEnterAnimation" class="hiddenlink" target="rightframe">wallpaperCloseEnterAnimation</A>
+</nobr><br>
+<!-- Field wallpaperCloseExitAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperCloseExitAnimation" class="hiddenlink" target="rightframe">wallpaperCloseExitAnimation</A>
+</nobr><br>
+<!-- Field wallpaperIntraCloseEnterAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraCloseEnterAnimation" class="hiddenlink" target="rightframe">wallpaperIntraCloseEnterAnimation</A>
+</nobr><br>
+<!-- Field wallpaperIntraCloseExitAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraCloseExitAnimation" class="hiddenlink" target="rightframe">wallpaperIntraCloseExitAnimation</A>
+</nobr><br>
+<!-- Field wallpaperIntraOpenEnterAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraOpenEnterAnimation" class="hiddenlink" target="rightframe">wallpaperIntraOpenEnterAnimation</A>
+</nobr><br>
+<!-- Field wallpaperIntraOpenExitAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraOpenExitAnimation" class="hiddenlink" target="rightframe">wallpaperIntraOpenExitAnimation</A>
+</nobr><br>
+<!-- Class WallpaperManager -->
+<A HREF="pkg_android.app.html#WallpaperManager" class="hiddenlink" target="rightframe"><b>WallpaperManager</b></A><br>
+<!-- Field wallpaperOpenEnterAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperOpenEnterAnimation" class="hiddenlink" target="rightframe">wallpaperOpenEnterAnimation</A>
+</nobr><br>
+<!-- Field wallpaperOpenExitAnimation -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperOpenExitAnimation" class="hiddenlink" target="rightframe">wallpaperOpenExitAnimation</A>
+</nobr><br>
+<!-- Class WebChromeClient -->
+<A HREF="android.webkit.WebChromeClient.html" class="hiddenlink" target="rightframe">WebChromeClient</A><br>
+<!-- Class WebSettings -->
+<A HREF="android.webkit.WebSettings.html" class="hiddenlink" target="rightframe">WebSettings</A><br>
+<!-- Class WebStorage -->
+<A HREF="pkg_android.webkit.html#WebStorage" class="hiddenlink" target="rightframe"><b>WebStorage</b></A><br>
+<!-- Class WebStorage.QuotaUpdater -->
+<A HREF="pkg_android.webkit.html#WebStorage.QuotaUpdater" class="hiddenlink" target="rightframe"><b><i>WebStorage.QuotaUpdater</i></b></A><br>
+<!-- Class WebView -->
+<A HREF="android.webkit.WebView.html" class="hiddenlink" target="rightframe">WebView</A><br>
+<!-- Class WebViewClient -->
+<A HREF="android.webkit.WebViewClient.html" class="hiddenlink" target="rightframe">WebViewClient</A><br>
+<!-- Field WHITE_BALANCE_AUTO -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_AUTO" class="hiddenlink" target="rightframe">WHITE_BALANCE_AUTO</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_CLOUDY_DAYLIGHT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_CLOUDY_DAYLIGHT" class="hiddenlink" target="rightframe">WHITE_BALANCE_CLOUDY_DAYLIGHT</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_DAYLIGHT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_DAYLIGHT" class="hiddenlink" target="rightframe">WHITE_BALANCE_DAYLIGHT</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_FLUORESCENT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_FLUORESCENT" class="hiddenlink" target="rightframe">WHITE_BALANCE_FLUORESCENT</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_INCANDESCENT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_INCANDESCENT" class="hiddenlink" target="rightframe">WHITE_BALANCE_INCANDESCENT</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_SHADE -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_SHADE" class="hiddenlink" target="rightframe">WHITE_BALANCE_SHADE</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_TWILIGHT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_TWILIGHT" class="hiddenlink" target="rightframe">WHITE_BALANCE_TWILIGHT</A>
+</nobr><br>
+<!-- Field WHITE_BALANCE_WARM_FLUORESCENT -->
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_WARM_FLUORESCENT" class="hiddenlink" target="rightframe">WHITE_BALANCE_WARM_FLUORESCENT</A>
+</nobr><br>
+<!-- Class Window.Callback -->
+<A HREF="android.view.Window.Callback.html" class="hiddenlink" target="rightframe"><i>Window.Callback</i></A><br>
+<!-- Class WindowManager.LayoutParams -->
+<A HREF="android.view.WindowManager.LayoutParams.html" class="hiddenlink" target="rightframe">WindowManager.LayoutParams</A><br>
+<!-- Field windowShowWallpaper -->
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowShowWallpaper" class="hiddenlink" target="rightframe">windowShowWallpaper</A>
+</nobr><br>
+<!-- Method writeToParcel -->
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.writeToParcel_added(android.os.Parcel, int)" class="hiddenlink" target="rightframe"><b>writeToParcel</b>
+(<code>Parcel, int</code>)</A></nobr><br>
+<!-- Field YCbCr_422_I -->
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.graphics.PixelFormat.html#android.graphics.PixelFormat.YCbCr_422_I" class="hiddenlink" target="rightframe">YCbCr_422_I</A>
+</nobr><br>
+<!-- Method yieldIfContendedSafely -->
+<nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.yieldIfContendedSafely_added(long)" class="hiddenlink" target="rightframe"><b>yieldIfContendedSafely</b>
+(<code>long</code>)</A></nobr><br>
+<!-- Class Zygote -->
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="dalvik.system.Zygote.html" class="hiddenlink" target="rightframe">Zygote</A><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/alldiffs_index_changes.html b/docs/html/sdk/api_diff/5/changes/alldiffs_index_changes.html
new file mode 100644
index 0000000..0913984
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/alldiffs_index_changes.html
@@ -0,0 +1,2069 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+All Changes Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for All Differences" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="alldiffs_index_all.html" xclass="hiddenlink">All Differences</a>
+ <br>
+<A HREF="alldiffs_index_removals.html" xclass="hiddenlink">Removals</A>
+ <br>
+<A HREF="alldiffs_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<b>Changes</b>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<!-- Field _SYNC_ACCOUNT -->
+<A NAME="_"></A>
+<br><b>underscore</b>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns._SYNC_ACCOUNT" class="hiddenlink" target="rightframe">_SYNC_ACCOUNT</A>
+</nobr><br>
+<!-- Class AbsoluteSizeSpan -->
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.text.style.AbsoluteSizeSpan.html" class="hiddenlink" target="rightframe">AbsoluteSizeSpan</A><br>
+<!-- Class AbstractInputMethodService -->
+<A HREF="android.inputmethodservice.AbstractInputMethodService.html" class="hiddenlink" target="rightframe">AbstractInputMethodService</A><br>
+<!-- Class AbstractWindowedCursor -->
+<A HREF="android.database.AbstractWindowedCursor.html" class="hiddenlink" target="rightframe">AbstractWindowedCursor</A><br>
+<!-- Field ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.ACTION" class="hiddenlink" target="rightframe">ACTION</A>
+</nobr><br>
+<!-- Class Activity -->
+<A HREF="android.app.Activity.html" class="hiddenlink" target="rightframe">Activity</A><br>
+<!-- Class ActivityInfo -->
+<A HREF="android.content.pm.ActivityInfo.html" class="hiddenlink" target="rightframe">ActivityInfo</A><br>
+<!-- Class ActivityManager -->
+<A HREF="android.app.ActivityManager.html" class="hiddenlink" target="rightframe">ActivityManager</A><br>
+<!-- Class ActivityManager.RunningAppProcessInfo -->
+<A HREF="android.app.ActivityManager.RunningAppProcessInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningAppProcessInfo</A><br>
+<!-- Class ActivityManager.RunningServiceInfo -->
+<A HREF="android.app.ActivityManager.RunningServiceInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningServiceInfo</A><br>
+<!-- Method addPlugin -->
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.addPlugin_changed(android.webkit.Plugin)" class="hiddenlink" target="rightframe">addPlugin
+(<code>Plugin</code>)</A></nobr><br>
+<!-- Method addPostalLocation -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.addPostalLocation_changed(android.content.Context, long, double, double)" class="hiddenlink" target="rightframe">addPostalLocation
+(<code>Context, long, double, double</code>)</A></nobr><br>
+<!-- Method addToGroup -->
+<i>addToGroup</i><br>
+ <nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.addToGroup_changed(android.content.ContentResolver, long, java.lang.String)" class="hiddenlink" target="rightframe">type
+(<code>ContentResolver, long, String</code>) in android.provider.Contacts.People
+</A></nobr><br>
+<!-- Method addToGroup -->
+ <nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.addToGroup_changed(android.content.ContentResolver, long, long)" class="hiddenlink" target="rightframe">type
+(<code>ContentResolver, long, long</code>) in android.provider.Contacts.People
+</A></nobr><br>
+<!-- Method addToMyContactsGroup -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.addToMyContactsGroup_changed(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe">addToMyContactsGroup
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<!-- Class AllocationLimitError -->
+<A HREF="dalvik.system.AllocationLimitError.html" class="hiddenlink" target="rightframe">AllocationLimitError</A><br>
+<!-- Package android -->
+<A HREF="pkg_android.html" class="hiddenlink" target="rightframe">android</A><br>
+<!-- Package android.app -->
+<A HREF="pkg_android.app.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<!-- Package android.content -->
+<A HREF="pkg_android.content.html" class="hiddenlink" target="rightframe">android.content</A><br>
+<!-- Package android.content.pm -->
+<A HREF="pkg_android.content.pm.html" class="hiddenlink" target="rightframe">android.content.pm</A><br>
+<!-- Package android.content.res -->
+<A HREF="pkg_android.content.res.html" class="hiddenlink" target="rightframe">android.content.res</A><br>
+<!-- Package android.database -->
+<A HREF="pkg_android.database.html" class="hiddenlink" target="rightframe">android.database</A><br>
+<!-- Package android.database.sqlite -->
+<A HREF="pkg_android.database.sqlite.html" class="hiddenlink" target="rightframe">android.database.sqlite</A><br>
+<!-- Package android.graphics -->
+<A HREF="pkg_android.graphics.html" class="hiddenlink" target="rightframe">android.graphics</A><br>
+<!-- Package android.graphics.drawable -->
+<A HREF="pkg_android.graphics.drawable.html" class="hiddenlink" target="rightframe">android.graphics.drawable</A><br>
+<!-- Package android.hardware -->
+<A HREF="pkg_android.hardware.html" class="hiddenlink" target="rightframe">android.hardware</A><br>
+<!-- Package android.inputmethodservice -->
+<A HREF="pkg_android.inputmethodservice.html" class="hiddenlink" target="rightframe">android.inputmethodservice</A><br>
+<!-- Package android.location -->
+<A HREF="pkg_android.location.html" class="hiddenlink" target="rightframe">android.location</A><br>
+<!-- Package android.media -->
+<A HREF="pkg_android.media.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<!-- Package android.opengl -->
+<A HREF="pkg_android.opengl.html" class="hiddenlink" target="rightframe">android.opengl</A><br>
+<!-- Package android.os -->
+<A HREF="pkg_android.os.html" class="hiddenlink" target="rightframe">android.os</A><br>
+<!-- Package android.provider -->
+<A HREF="pkg_android.provider.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<!-- Package android.telephony -->
+<A HREF="pkg_android.telephony.html" class="hiddenlink" target="rightframe">android.telephony</A><br>
+<!-- Package android.test -->
+<A HREF="pkg_android.test.html" class="hiddenlink" target="rightframe">android.test</A><br>
+<!-- Package android.test.mock -->
+<A HREF="pkg_android.test.mock.html" class="hiddenlink" target="rightframe">android.test.mock</A><br>
+<!-- Package android.text -->
+<A HREF="pkg_android.text.html" class="hiddenlink" target="rightframe">android.text</A><br>
+<!-- Package android.text.format -->
+<A HREF="pkg_android.text.format.html" class="hiddenlink" target="rightframe">android.text.format</A><br>
+<!-- Package android.text.style -->
+<A HREF="pkg_android.text.style.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<!-- Package android.util -->
+<A HREF="pkg_android.util.html" class="hiddenlink" target="rightframe">android.util</A><br>
+<!-- Package android.view -->
+<A HREF="pkg_android.view.html" class="hiddenlink" target="rightframe">android.view</A><br>
+<!-- Package android.view.animation -->
+<A HREF="pkg_android.view.animation.html" class="hiddenlink" target="rightframe">android.view.animation</A><br>
+<!-- Package android.webkit -->
+<A HREF="pkg_android.webkit.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<!-- Package android.widget -->
+<A HREF="pkg_android.widget.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<!-- Class AndroidTestRunner -->
+<A HREF="android.test.AndroidTestRunner.html" class="hiddenlink" target="rightframe">AndroidTestRunner</A><br>
+<!-- Class Animation -->
+<A HREF="android.view.animation.Animation.html" class="hiddenlink" target="rightframe">Animation</A><br>
+<!-- Field ATTACH_IMAGE -->
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.ATTACH_IMAGE" class="hiddenlink" target="rightframe">ATTACH_IMAGE</A>
+</nobr><br>
+<!-- Class AudioFormat -->
+<A HREF="android.media.AudioFormat.html" class="hiddenlink" target="rightframe">AudioFormat</A><br>
+<!-- Class AudioManager -->
+<A HREF="android.media.AudioManager.html" class="hiddenlink" target="rightframe">AudioManager</A><br>
+<!-- Field AUTHORITY -->
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.AUTHORITY" class="hiddenlink" target="rightframe">AUTHORITY</A>
+</nobr><br>
+<!-- Class AutoCompleteTextView -->
+<A HREF="android.widget.AutoCompleteTextView.html" class="hiddenlink" target="rightframe">AutoCompleteTextView</A><br>
+<!-- Field AUX_DATA -->
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.AUX_DATA" class="hiddenlink" target="rightframe">AUX_DATA</A>
+</nobr><br>
+<!-- Class BatteryManager -->
+<A NAME="B"></A>
+<br><font size="+2">B</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.os.BatteryManager.html" class="hiddenlink" target="rightframe">BatteryManager</A><br>
+<!-- Class BitmapDrawable -->
+<i>BitmapDrawable</i><br>
+ <A HREF="android.graphics.drawable.BitmapDrawable.html" class="hiddenlink" target="rightframe">android.graphics.drawable</A><br>
+<!-- Constructor BitmapDrawable -->
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_changed(java.io.InputStream)" class="hiddenlink" target="rightframe">BitmapDrawable
+(<code>InputStream</code>)</A></nobr> constructor<br>
+<!-- Constructor BitmapDrawable -->
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_changed(java.lang.String)" class="hiddenlink" target="rightframe">BitmapDrawable
+(<code>String</code>)</A></nobr> constructor<br>
+<!-- Class BlockingQueue -->
+<A HREF="java.util.concurrent.BlockingQueue.html" class="hiddenlink" target="rightframe"><i>BlockingQueue</i></A><br>
+<!-- Class BroadcastReceiver -->
+<A HREF="android.content.BroadcastReceiver.html" class="hiddenlink" target="rightframe">BroadcastReceiver</A><br>
+<!-- Class Build.VERSION_CODES -->
+<A HREF="android.os.Build.VERSION_CODES.html" class="hiddenlink" target="rightframe">Build.VERSION_CODES</A><br>
+<!-- Class CallbackProxy -->
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.webkit.CallbackProxy.html" class="hiddenlink" target="rightframe">CallbackProxy</A><br>
+<!-- Class Camera -->
+<A HREF="android.hardware.Camera.html" class="hiddenlink" target="rightframe">Camera</A><br>
+<!-- Class Camera.Parameters -->
+<A HREF="android.hardware.Camera.Parameters.html" class="hiddenlink" target="rightframe">Camera.Parameters</A><br>
+<!-- Method cancelSync -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.cancelSync_changed(android.net.Uri)" class="hiddenlink" target="rightframe">cancelSync
+(<code>Uri</code>)</A></nobr><br>
+<!-- Field CHANNEL_CONFIGURATION_DEFAULT -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_DEFAULT" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_DEFAULT</A>
+</nobr><br>
+<!-- Field CHANNEL_CONFIGURATION_INVALID -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_INVALID" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_INVALID</A>
+</nobr><br>
+<!-- Field CHANNEL_CONFIGURATION_MONO -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_MONO" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_MONO</A>
+</nobr><br>
+<!-- Field CHANNEL_CONFIGURATION_STEREO -->
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_STEREO" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_STEREO</A>
+</nobr><br>
+<!-- Method clear -->
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.clear_changed()" class="hiddenlink" target="rightframe">clear
+()</A></nobr><br>
+<!-- Method clearWallpaper -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.clearWallpaper_changed()" class="hiddenlink" target="rightframe">clearWallpaper
+()</A></nobr><br>
+<!-- Field COMPANY -->
+<i>COMPANY</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.COMPANY" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+<!-- Field COMPANY -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.COMPANY" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Class Configuration -->
+<A HREF="android.content.res.Configuration.html" class="hiddenlink" target="rightframe">Configuration</A><br>
+<!-- Class Contacts -->
+<A HREF="android.provider.Contacts.html" class="hiddenlink" target="rightframe">Contacts</A><br>
+<!-- Class Contacts.ContactMethods -->
+<A HREF="android.provider.Contacts.ContactMethods.html" class="hiddenlink" target="rightframe">Contacts.ContactMethods</A><br>
+<!-- Class Contacts.ContactMethodsColumns -->
+<A HREF="android.provider.Contacts.ContactMethodsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.ContactMethodsColumns</i></A><br>
+<!-- Class Contacts.Extensions -->
+<A HREF="android.provider.Contacts.Extensions.html" class="hiddenlink" target="rightframe">Contacts.Extensions</A><br>
+<!-- Class Contacts.ExtensionsColumns -->
+<A HREF="android.provider.Contacts.ExtensionsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.ExtensionsColumns</i></A><br>
+<!-- Class Contacts.GroupMembership -->
+<A HREF="android.provider.Contacts.GroupMembership.html" class="hiddenlink" target="rightframe">Contacts.GroupMembership</A><br>
+<!-- Class Contacts.Groups -->
+<A HREF="android.provider.Contacts.Groups.html" class="hiddenlink" target="rightframe">Contacts.Groups</A><br>
+<!-- Class Contacts.GroupsColumns -->
+<A HREF="android.provider.Contacts.GroupsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.GroupsColumns</i></A><br>
+<!-- Class Contacts.Intents -->
+<i>Contacts.Intents</i><br>
+ <A HREF="android.provider.Contacts.Intents.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<!-- Constructor Contacts.Intents -->
+ <nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.ctor_changed()" class="hiddenlink" target="rightframe">Contacts.Intents
+()</A></nobr> constructor<br>
+<!-- Class Contacts.Intents.Insert -->
+<i>Contacts.Intents.Insert</i><br>
+ <A HREF="android.provider.Contacts.Intents.Insert.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<!-- Constructor Contacts.Intents.Insert -->
+ <nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.ctor_changed()" class="hiddenlink" target="rightframe">Contacts.Intents.Insert
+()</A></nobr> constructor<br>
+<!-- Class Contacts.Intents.UI -->
+<i>Contacts.Intents.UI</i><br>
+ <A HREF="android.provider.Contacts.Intents.UI.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<!-- Constructor Contacts.Intents.UI -->
+ <nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.ctor_changed()" class="hiddenlink" target="rightframe">Contacts.Intents.UI
+()</A></nobr> constructor<br>
+<!-- Class Contacts.OrganizationColumns -->
+<A HREF="android.provider.Contacts.OrganizationColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.OrganizationColumns</i></A><br>
+<!-- Class Contacts.Organizations -->
+<A HREF="android.provider.Contacts.Organizations.html" class="hiddenlink" target="rightframe">Contacts.Organizations</A><br>
+<!-- Class Contacts.People -->
+<A HREF="android.provider.Contacts.People.html" class="hiddenlink" target="rightframe">Contacts.People</A><br>
+<!-- Class Contacts.People.ContactMethods -->
+<A HREF="android.provider.Contacts.People.ContactMethods.html" class="hiddenlink" target="rightframe">Contacts.People.ContactMethods</A><br>
+<!-- Class Contacts.People.Extensions -->
+<A HREF="android.provider.Contacts.People.Extensions.html" class="hiddenlink" target="rightframe">Contacts.People.Extensions</A><br>
+<!-- Class Contacts.People.Phones -->
+<A HREF="android.provider.Contacts.People.Phones.html" class="hiddenlink" target="rightframe">Contacts.People.Phones</A><br>
+<!-- Class Contacts.PeopleColumns -->
+<A HREF="android.provider.Contacts.PeopleColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PeopleColumns</i></A><br>
+<!-- Class Contacts.Phones -->
+<A HREF="android.provider.Contacts.Phones.html" class="hiddenlink" target="rightframe">Contacts.Phones</A><br>
+<!-- Class Contacts.PhonesColumns -->
+<A HREF="android.provider.Contacts.PhonesColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PhonesColumns</i></A><br>
+<!-- Class Contacts.Photos -->
+<A HREF="android.provider.Contacts.Photos.html" class="hiddenlink" target="rightframe">Contacts.Photos</A><br>
+<!-- Class Contacts.PhotosColumns -->
+<A HREF="android.provider.Contacts.PhotosColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PhotosColumns</i></A><br>
+<!-- Class Contacts.PresenceColumns -->
+<A HREF="android.provider.Contacts.PresenceColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PresenceColumns</i></A><br>
+<!-- Class Contacts.Settings -->
+<A HREF="android.provider.Contacts.Settings.html" class="hiddenlink" target="rightframe">Contacts.Settings</A><br>
+<!-- Class Contacts.SettingsColumns -->
+<A HREF="android.provider.Contacts.SettingsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.SettingsColumns</i></A><br>
+<!-- Field CONTENT_DIRECTORY -->
+<i>CONTENT_DIRECTORY</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+ in
+<nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.Organizations</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.ContactMethods.html#android.provider.Contacts.People.ContactMethods.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.People.ContactMethods</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.Extensions.html#android.provider.Contacts.People.Extensions.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Extensions</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.Phones.html#android.provider.Contacts.People.Phones.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Phones</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+ in
+<nobr><A HREF="android.provider.Contacts.Photos.html#android.provider.Contacts.Photos.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.Photos</A>
+</nobr><br>
+<!-- Field CONTENT_DIRECTORY -->
+ in
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.Settings</A>
+</nobr><br>
+<!-- Field CONTENT_EMAIL_ITEM_TYPE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_EMAIL_ITEM_TYPE" class="hiddenlink" target="rightframe">CONTENT_EMAIL_ITEM_TYPE</A>
+</nobr><br>
+<!-- Field CONTENT_EMAIL_TYPE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_EMAIL_TYPE" class="hiddenlink" target="rightframe">CONTENT_EMAIL_TYPE</A>
+</nobr><br>
+<!-- Field CONTENT_EMAIL_URI -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_EMAIL_URI" class="hiddenlink" target="rightframe">CONTENT_EMAIL_URI</A>
+</nobr><br>
+<!-- Field CONTENT_FILTER_URI -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_FILTER_URI" class="hiddenlink" target="rightframe">CONTENT_FILTER_URI</A>
+</nobr><br>
+<!-- Field CONTENT_FILTER_URL -->
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_FILTER_URL" class="hiddenlink" target="rightframe">CONTENT_FILTER_URL</A>
+</nobr><br>
+<!-- Field CONTENT_IM_ITEM_TYPE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_IM_ITEM_TYPE" class="hiddenlink" target="rightframe">CONTENT_IM_ITEM_TYPE</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+<i>CONTENT_ITEM_TYPE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+<!-- Field CONTENT_ITEM_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<!-- Field CONTENT_POSTAL_ITEM_TYPE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_POSTAL_ITEM_TYPE" class="hiddenlink" target="rightframe">CONTENT_POSTAL_ITEM_TYPE</A>
+</nobr><br>
+<!-- Field CONTENT_POSTAL_TYPE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_POSTAL_TYPE" class="hiddenlink" target="rightframe">CONTENT_POSTAL_TYPE</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+<i>CONTENT_TYPE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+<!-- Field CONTENT_TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+<i>CONTENT_URI</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Organizations</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.Photos.html#android.provider.Contacts.Photos.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Photos</A>
+</nobr><br>
+<!-- Field CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Settings</A>
+</nobr><br>
+<!-- Class ContentProvider -->
+<A HREF="android.content.ContentProvider.html" class="hiddenlink" target="rightframe">ContentProvider</A><br>
+<!-- Class ContentResolver -->
+<A HREF="android.content.ContentResolver.html" class="hiddenlink" target="rightframe">ContentResolver</A><br>
+<!-- Class Context -->
+<A HREF="android.content.Context.html" class="hiddenlink" target="rightframe">Context</A><br>
+<!-- Class ContextWrapper -->
+<A HREF="android.content.ContextWrapper.html" class="hiddenlink" target="rightframe">ContextWrapper</A><br>
+<!-- Method createPersonInMyContactsGroup -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.createPersonInMyContactsGroup_changed(android.content.ContentResolver, android.content.ContentValues)" class="hiddenlink" target="rightframe">createPersonInMyContactsGroup
+(<code>ContentResolver, ContentValues</code>)</A></nobr><br>
+<!-- Class CursorWindow -->
+<A HREF="android.database.CursorWindow.html" class="hiddenlink" target="rightframe">CursorWindow</A><br>
+<!-- Field CUSTOM_RINGTONE -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.CUSTOM_RINGTONE" class="hiddenlink" target="rightframe">CUSTOM_RINGTONE</A>
+</nobr><br>
+<!-- Package dalvik.system -->
+<A NAME="D"></A>
+<A HREF="pkg_dalvik.system.html" class="hiddenlink" target="rightframe">dalvik.system</A><br>
+<!-- Field DATA -->
+<i>DATA</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.DATA" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field DATA -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.DATA" class="hiddenlink" target="rightframe">android.provider.Contacts.PhotosColumns</A>
+</nobr><br>
+<!-- Class DatabaseUtils -->
+<A HREF="android.database.DatabaseUtils.html" class="hiddenlink" target="rightframe">DatabaseUtils</A><br>
+<!-- Class Date -->
+<i>Date</i><br>
+ <A HREF="java.util.Date.html" class="hiddenlink" target="rightframe">java.util</A><br>
+<!-- Constructor Date -->
+ <nobr><A HREF="java.util.Date.html#java.util.Date.ctor_changed()" class="hiddenlink" target="rightframe">Date
+()</A></nobr> constructor<br>
+<!-- Constructor Date -->
+ <nobr><A HREF="java.util.Date.html#java.util.Date.ctor_changed(int, int, int, int, int, int)" class="hiddenlink" target="rightframe">Date
+(<code>int, int, int, int, int, int</code>)</A></nobr> constructor<br>
+<!-- Class DateUtils -->
+<A HREF="android.text.format.DateUtils.html" class="hiddenlink" target="rightframe">DateUtils</A><br>
+<!-- Class Debug.MemoryInfo -->
+<A HREF="android.os.Debug.MemoryInfo.html" class="hiddenlink" target="rightframe">Debug.MemoryInfo</A><br>
+<!-- Method decodeImProtocol -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.decodeImProtocol_changed(java.lang.String)" class="hiddenlink" target="rightframe">decodeImProtocol
+(<code>String</code>)</A></nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+<i>DEFAULT_SORT_ORDER</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Organizations</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.ContactMethods.html#android.provider.Contacts.People.ContactMethods.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People.ContactMethods</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.Extensions.html#android.provider.Contacts.People.Extensions.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Extensions</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.Phones.html#android.provider.Contacts.People.Phones.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Phones</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.Photos.html#android.provider.Contacts.Photos.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Photos</A>
+</nobr><br>
+<!-- Field DEFAULT_SORT_ORDER -->
+ in
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Settings</A>
+</nobr><br>
+<!-- Field DELETED_CONTENT_URI -->
+<i>DELETED_CONTENT_URI</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.DELETED_CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+<!-- Field DELETED_CONTENT_URI -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.DELETED_CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+<!-- Class Dialog -->
+<A HREF="android.app.Dialog.html" class="hiddenlink" target="rightframe">Dialog</A><br>
+<!-- Method dispatch -->
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.dispatch_changed(android.view.KeyEvent.Callback)" class="hiddenlink" target="rightframe">dispatch
+(<code>Callback</code>)</A></nobr><br>
+<!-- Method dispatchClickEvent -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.dispatchClickEvent_changed(android.content.Context)" class="hiddenlink" target="rightframe">dispatchClickEvent
+(<code>Context</code>)</A></nobr><br>
+<!-- Field DISPLAY_NAME -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.DISPLAY_NAME" class="hiddenlink" target="rightframe">DISPLAY_NAME</A>
+</nobr><br>
+<!-- Field DOWNLOAD_REQUIRED -->
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.DOWNLOAD_REQUIRED" class="hiddenlink" target="rightframe">DOWNLOAD_REQUIRED</A>
+</nobr><br>
+<!-- Class Drawable -->
+<A HREF="android.graphics.drawable.Drawable.html" class="hiddenlink" target="rightframe">Drawable</A><br>
+<!-- Class Drawable.ConstantState -->
+<A HREF="android.graphics.drawable.Drawable.ConstantState.html" class="hiddenlink" target="rightframe">Drawable.ConstantState</A><br>
+<!-- Field EMAIL -->
+<A NAME="E"></A>
+<br><font size="+2">E</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.EMAIL" class="hiddenlink" target="rightframe">EMAIL</A>
+</nobr><br>
+<!-- Field EMAIL_ISPRIMARY -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.EMAIL_ISPRIMARY" class="hiddenlink" target="rightframe">EMAIL_ISPRIMARY</A>
+</nobr><br>
+<!-- Field EMAIL_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.EMAIL_TYPE" class="hiddenlink" target="rightframe">EMAIL_TYPE</A>
+</nobr><br>
+<!-- Method encodeCustomImProtocol -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.encodeCustomImProtocol_changed(java.lang.String)" class="hiddenlink" target="rightframe">encodeCustomImProtocol
+(<code>String</code>)</A></nobr><br>
+<!-- Method encodePredefinedImProtocol -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.encodePredefinedImProtocol_changed(int)" class="hiddenlink" target="rightframe">encodePredefinedImProtocol
+(<code>int</code>)</A></nobr><br>
+<!-- Field EXISTS_ON_SERVER -->
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.EXISTS_ON_SERVER" class="hiddenlink" target="rightframe">EXISTS_ON_SERVER</A>
+</nobr><br>
+<!-- Field EXTRA_CREATE_DESCRIPTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.EXTRA_CREATE_DESCRIPTION" class="hiddenlink" target="rightframe">EXTRA_CREATE_DESCRIPTION</A>
+</nobr><br>
+<!-- Field EXTRA_FORCE_CREATE -->
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.EXTRA_FORCE_CREATE" class="hiddenlink" target="rightframe">EXTRA_FORCE_CREATE</A>
+</nobr><br>
+<!-- Field FILTER_CONTACTS_ACTION -->
+<A NAME="F"></A>
+<br><font size="+2">F</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.FILTER_CONTACTS_ACTION" class="hiddenlink" target="rightframe">FILTER_CONTACTS_ACTION</A>
+</nobr><br>
+<!-- Field FILTER_TEXT_EXTRA_KEY -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.FILTER_TEXT_EXTRA_KEY" class="hiddenlink" target="rightframe">FILTER_TEXT_EXTRA_KEY</A>
+</nobr><br>
+<!-- Class Formatter -->
+<A HREF="android.text.format.Formatter.html" class="hiddenlink" target="rightframe">Formatter</A><br>
+<!-- Field FULL_MODE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.FULL_MODE" class="hiddenlink" target="rightframe">FULL_MODE</A>
+</nobr><br>
+<!-- Method getContentLength -->
+<A NAME="G"></A>
+<br><font size="+2">G</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getContentLength_changed()" class="hiddenlink" target="rightframe">getContentLength
+()</A></nobr><br>
+<!-- Method getDescription -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getDescription_changed()" class="hiddenlink" target="rightframe">getDescription
+()</A></nobr><br>
+<!-- Method getDisplayLabel -->
+<i>getDisplayLabel</i><br>
+ <nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.getDisplayLabel_changed(android.content.Context, int, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe">type
+(<code>Context, int, int, CharSequence</code>) in android.provider.Contacts.ContactMethods
+</A></nobr><br>
+<!-- Method getDisplayLabel -->
+ <nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe">type
+(<code>Context, int, CharSequence</code>) in android.provider.Contacts.Organizations
+</A></nobr><br>
+<!-- Method getDisplayLabel -->
+ <nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe">type
+(<code>Context, int, CharSequence</code>) in android.provider.Contacts.Phones
+</A></nobr><br>
+<!-- Method getDisplayLabel -->
+ <nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence, java.lang.CharSequence[])" class="hiddenlink" target="rightframe">type
+(<code>Context, int, CharSequence, CharSequence[]</code>) in android.provider.Contacts.Phones
+</A></nobr><br>
+<!-- Method getFileName -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getFileName_changed()" class="hiddenlink" target="rightframe">getFileName
+()</A></nobr><br>
+<!-- Method getHeaders -->
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getHeaders_changed()" class="hiddenlink" target="rightframe">getHeaders
+()</A></nobr><br>
+<!-- Method getInputStream -->
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getInputStream_changed()" class="hiddenlink" target="rightframe">getInputStream
+()</A></nobr><br>
+<!-- Method getList -->
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.getList_changed()" class="hiddenlink" target="rightframe">getList
+()</A></nobr><br>
+<!-- Method getName -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getName_changed()" class="hiddenlink" target="rightframe">getName
+()</A></nobr><br>
+<!-- Method getPath -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getPath_changed()" class="hiddenlink" target="rightframe">getPath
+()</A></nobr><br>
+<!-- Method getPluginData -->
+<i>getPluginData</i><br>
+ <nobr><A HREF="android.webkit.UrlInterceptHandler.html#android.webkit.UrlInterceptHandler.getPluginData_changed(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type
+(<code>String, Map<String, String></code>) in android.webkit.UrlInterceptHandler
+</A></nobr><br>
+<!-- Method getPluginData -->
+ <nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.getPluginData_changed(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type
+(<code>String, Map<String, String></code>) in android.webkit.UrlInterceptRegistry
+</A></nobr><br>
+<!-- Method getPluginList -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.getPluginList_changed()" class="hiddenlink" target="rightframe">getPluginList
+()</A></nobr><br>
+<!-- Method getSetting -->
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.getSetting_changed(android.content.ContentResolver, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">getSetting
+(<code>ContentResolver, String, String</code>)</A></nobr><br>
+<!-- Method getStatusCode -->
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getStatusCode_changed()" class="hiddenlink" target="rightframe">getStatusCode
+()</A></nobr><br>
+<!-- Method getUseDoubleTree -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getUseDoubleTree_changed()" class="hiddenlink" target="rightframe">getUseDoubleTree
+()</A></nobr><br>
+<!-- Method getWallpaper -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.getWallpaper_changed()" class="hiddenlink" target="rightframe">getWallpaper
+()</A></nobr><br>
+<!-- Method getWallpaperDesiredMinimumHeight -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.getWallpaperDesiredMinimumHeight_changed()" class="hiddenlink" target="rightframe">getWallpaperDesiredMinimumHeight
+()</A></nobr><br>
+<!-- Method getWallpaperDesiredMinimumWidth -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.getWallpaperDesiredMinimumWidth_changed()" class="hiddenlink" target="rightframe">getWallpaperDesiredMinimumWidth
+()</A></nobr><br>
+<!-- Class GLSurfaceView -->
+<A HREF="android.opengl.GLSurfaceView.html" class="hiddenlink" target="rightframe">GLSurfaceView</A><br>
+<!-- Field GPU -->
+<nobr><A HREF="android.view.Surface.html#android.view.Surface.GPU" class="hiddenlink" target="rightframe">GPU</A>
+</nobr><br>
+<!-- Field GROUP_ANDROID_STARRED -->
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.GROUP_ANDROID_STARRED" class="hiddenlink" target="rightframe">GROUP_ANDROID_STARRED</A>
+</nobr><br>
+<!-- Field GROUP_ID -->
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_ID" class="hiddenlink" target="rightframe">GROUP_ID</A>
+</nobr><br>
+<!-- Field GROUP_MY_CONTACTS -->
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.GROUP_MY_CONTACTS" class="hiddenlink" target="rightframe">GROUP_MY_CONTACTS</A>
+</nobr><br>
+<!-- Field GROUP_NAME_EXTRA_KEY -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.GROUP_NAME_EXTRA_KEY" class="hiddenlink" target="rightframe">GROUP_NAME_EXTRA_KEY</A>
+</nobr><br>
+<!-- Field GROUP_SYNC_ACCOUNT -->
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_SYNC_ACCOUNT" class="hiddenlink" target="rightframe">GROUP_SYNC_ACCOUNT</A>
+</nobr><br>
+<!-- Field GROUP_SYNC_ID -->
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_SYNC_ID" class="hiddenlink" target="rightframe">GROUP_SYNC_ID</A>
+</nobr><br>
+<!-- Class HandlerThread -->
+<A NAME="H"></A>
+<br><font size="+2">H</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.os.HandlerThread.html" class="hiddenlink" target="rightframe">HandlerThread</A><br>
+<!-- Class HapticFeedbackConstants -->
+<A HREF="android.view.HapticFeedbackConstants.html" class="hiddenlink" target="rightframe">HapticFeedbackConstants</A><br>
+<!-- Field HARDWARE -->
+<nobr><A HREF="android.view.Surface.html#android.view.Surface.HARDWARE" class="hiddenlink" target="rightframe">HARDWARE</A>
+</nobr><br>
+<!-- Field IM_ACCOUNT -->
+<A NAME="I"></A>
+<br><font size="+2">I</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.PresenceColumns.html#android.provider.Contacts.PresenceColumns.IM_ACCOUNT" class="hiddenlink" target="rightframe">IM_ACCOUNT</A>
+</nobr><br>
+<!-- Field IM_HANDLE -->
+<i>IM_HANDLE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.IM_HANDLE" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+<!-- Field IM_HANDLE -->
+ in
+<nobr><A HREF="android.provider.Contacts.PresenceColumns.html#android.provider.Contacts.PresenceColumns.IM_HANDLE" class="hiddenlink" target="rightframe">android.provider.Contacts.PresenceColumns</A>
+</nobr><br>
+<!-- Field IM_ISPRIMARY -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.IM_ISPRIMARY" class="hiddenlink" target="rightframe">IM_ISPRIMARY</A>
+</nobr><br>
+<!-- Field IM_PROTOCOL -->
+<i>IM_PROTOCOL</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.IM_PROTOCOL" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+<!-- Field IM_PROTOCOL -->
+ in
+<nobr><A HREF="android.provider.Contacts.PresenceColumns.html#android.provider.Contacts.PresenceColumns.IM_PROTOCOL" class="hiddenlink" target="rightframe">android.provider.Contacts.PresenceColumns</A>
+</nobr><br>
+<!-- Class ImageSpan -->
+<i>ImageSpan</i><br>
+ <A HREF="android.text.style.ImageSpan.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<!-- Constructor ImageSpan -->
+ <nobr><A HREF="android.text.style.ImageSpan.html#android.text.style.ImageSpan.ctor_changed(android.graphics.Bitmap)" class="hiddenlink" target="rightframe">ImageSpan
+(<code>Bitmap</code>)</A></nobr> constructor<br>
+<!-- Constructor ImageSpan -->
+ <nobr><A HREF="android.text.style.ImageSpan.html#android.text.style.ImageSpan.ctor_changed(android.graphics.Bitmap, int)" class="hiddenlink" target="rightframe">ImageSpan
+(<code>Bitmap, int</code>)</A></nobr> constructor<br>
+<!-- Method injectInsrumentation -->
+<nobr><A HREF="android.test.InstrumentationTestCase.html#android.test.InstrumentationTestCase.injectInsrumentation_changed(android.app.Instrumentation)" class="hiddenlink" target="rightframe">injectInsrumentation
+(<code>Instrumentation</code>)</A></nobr><br>
+<!-- Class InputMethodService -->
+<A HREF="android.inputmethodservice.InputMethodService.html" class="hiddenlink" target="rightframe">InputMethodService</A><br>
+<!-- Class InputType -->
+<A HREF="android.text.InputType.html" class="hiddenlink" target="rightframe"><i>InputType</i></A><br>
+<!-- Class InstrumentationTestCase -->
+<A HREF="android.test.InstrumentationTestCase.html" class="hiddenlink" target="rightframe">InstrumentationTestCase</A><br>
+<!-- Class Intent -->
+<A HREF="android.content.Intent.html" class="hiddenlink" target="rightframe">Intent</A><br>
+<!-- Class IntentService -->
+<A HREF="android.app.IntentService.html" class="hiddenlink" target="rightframe">IntentService</A><br>
+<!-- Field ISPRIMARY -->
+<i>ISPRIMARY</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.ISPRIMARY" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field ISPRIMARY -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.ISPRIMARY" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field ISPRIMARY -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.ISPRIMARY" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Field isSyncable -->
+<nobr><A HREF="android.content.pm.ProviderInfo.html#android.content.pm.ProviderInfo.isSyncable" class="hiddenlink" target="rightframe">isSyncable</A>
+</nobr><br>
+<!-- Package java.lang -->
+<A NAME="J"></A>
+<A HREF="pkg_java.lang.html" class="hiddenlink" target="rightframe">java.lang</A><br>
+<!-- Package java.net -->
+<A HREF="pkg_java.net.html" class="hiddenlink" target="rightframe">java.net</A><br>
+<!-- Package java.util -->
+<A HREF="pkg_java.util.html" class="hiddenlink" target="rightframe">java.util</A><br>
+<!-- Package java.util.concurrent -->
+<A HREF="pkg_java.util.concurrent.html" class="hiddenlink" target="rightframe">java.util.concurrent</A><br>
+<!-- Package java.util.concurrent.locks -->
+<A HREF="pkg_java.util.concurrent.locks.html" class="hiddenlink" target="rightframe">java.util.concurrent.locks</A><br>
+<!-- Field JOB_TITLE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.JOB_TITLE" class="hiddenlink" target="rightframe">JOB_TITLE</A>
+</nobr><br>
+<!-- Field KEY -->
+<A NAME="K"></A>
+<br><font size="+2">K</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns.KEY" class="hiddenlink" target="rightframe">KEY</A>
+</nobr><br>
+<!-- Class KeyEvent -->
+<i>KeyEvent</i><br>
+ <A HREF="android.view.KeyEvent.html" class="hiddenlink" target="rightframe">android.view</A><br>
+<!-- Constructor KeyEvent -->
+ <nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.ctor_changed(android.view.KeyEvent, long, int)" class="hiddenlink" target="rightframe">KeyEvent
+(<code>KeyEvent, long, int</code>)</A></nobr> constructor<br>
+<!-- Class KeyEvent.Callback -->
+<A HREF="android.view.KeyEvent.Callback.html" class="hiddenlink" target="rightframe"><i>KeyEvent.Callback</i></A><br>
+<!-- Field KIND -->
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.KIND" class="hiddenlink" target="rightframe">KIND</A>
+</nobr><br>
+<!-- Field KIND_EMAIL -->
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_EMAIL" class="hiddenlink" target="rightframe">KIND_EMAIL</A>
+</nobr><br>
+<!-- Field KIND_IM -->
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_IM" class="hiddenlink" target="rightframe">KIND_IM</A>
+</nobr><br>
+<!-- Field KIND_ORGANIZATION -->
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_ORGANIZATION" class="hiddenlink" target="rightframe">KIND_ORGANIZATION</A>
+</nobr><br>
+<!-- Field KIND_PHONE -->
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_PHONE" class="hiddenlink" target="rightframe">KIND_PHONE</A>
+</nobr><br>
+<!-- Field KIND_POSTAL -->
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_POSTAL" class="hiddenlink" target="rightframe">KIND_POSTAL</A>
+</nobr><br>
+<!-- Field LABEL -->
+<A NAME="L"></A>
+<br><font size="+2">L</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>LABEL</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.LABEL" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field LABEL -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.LABEL" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field LABEL -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.LABEL" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Field LAST_TIME_CONTACTED -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.LAST_TIME_CONTACTED" class="hiddenlink" target="rightframe">LAST_TIME_CONTACTED</A>
+</nobr><br>
+<!-- Class LauncherActivity -->
+<A HREF="android.app.LauncherActivity.html" class="hiddenlink" target="rightframe">LauncherActivity</A><br>
+<!-- Field LIST_ALL_CONTACTS_ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_ALL_CONTACTS_ACTION" class="hiddenlink" target="rightframe">LIST_ALL_CONTACTS_ACTION</A>
+</nobr><br>
+<!-- Field LIST_CONTACTS_WITH_PHONES_ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_CONTACTS_WITH_PHONES_ACTION" class="hiddenlink" target="rightframe">LIST_CONTACTS_WITH_PHONES_ACTION</A>
+</nobr><br>
+<!-- Field LIST_DEFAULT -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_DEFAULT" class="hiddenlink" target="rightframe">LIST_DEFAULT</A>
+</nobr><br>
+<!-- Field LIST_FREQUENT_ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_FREQUENT_ACTION" class="hiddenlink" target="rightframe">LIST_FREQUENT_ACTION</A>
+</nobr><br>
+<!-- Field LIST_GROUP_ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_GROUP_ACTION" class="hiddenlink" target="rightframe">LIST_GROUP_ACTION</A>
+</nobr><br>
+<!-- Field LIST_STARRED_ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_STARRED_ACTION" class="hiddenlink" target="rightframe">LIST_STARRED_ACTION</A>
+</nobr><br>
+<!-- Field LIST_STREQUENT_ACTION -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_STREQUENT_ACTION" class="hiddenlink" target="rightframe">LIST_STREQUENT_ACTION</A>
+</nobr><br>
+<!-- Method loadContactPhoto -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.loadContactPhoto_changed(android.content.Context, android.net.Uri, int, android.graphics.BitmapFactory.Options)" class="hiddenlink" target="rightframe">loadContactPhoto
+(<code>Context, Uri, int, Options</code>)</A></nobr><br>
+<!-- Field LOCAL_VERSION -->
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.LOCAL_VERSION" class="hiddenlink" target="rightframe">LOCAL_VERSION</A>
+</nobr><br>
+<!-- Class LocationManager -->
+<A HREF="android.location.LocationManager.html" class="hiddenlink" target="rightframe">LocationManager</A><br>
+<!-- Method lockCanvas -->
+<nobr><A HREF="android.view.Surface.html#android.view.Surface.lockCanvas_changed(android.graphics.Rect)" class="hiddenlink" target="rightframe">lockCanvas
+(<code>Rect</code>)</A></nobr><br>
+<!-- Class Manifest.permission -->
+<A NAME="M"></A>
+<br><font size="+2">M</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.Manifest.permission.html" class="hiddenlink" target="rightframe">Manifest.permission</A><br>
+<!-- Method markAsContacted -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.markAsContacted_changed(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe">markAsContacted
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<!-- Class MediaController.MediaPlayerControl -->
+<A HREF="android.widget.MediaController.MediaPlayerControl.html" class="hiddenlink" target="rightframe"><i>MediaController.MediaPlayerControl</i></A><br>
+<!-- Class MediaPlayer -->
+<A HREF="android.media.MediaPlayer.html" class="hiddenlink" target="rightframe">MediaPlayer</A><br>
+<!-- Class MediaStore.Images.Thumbnails -->
+<A HREF="android.provider.MediaStore.Images.Thumbnails.html" class="hiddenlink" target="rightframe">MediaStore.Images.Thumbnails</A><br>
+<!-- Field MEMORY_TYPE_GPU -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.MEMORY_TYPE_GPU" class="hiddenlink" target="rightframe">MEMORY_TYPE_GPU</A>
+</nobr><br>
+<!-- Field MEMORY_TYPE_HARDWARE -->
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.MEMORY_TYPE_HARDWARE" class="hiddenlink" target="rightframe">MEMORY_TYPE_HARDWARE</A>
+</nobr><br>
+<!-- Class MockContext -->
+<A HREF="android.test.mock.MockContext.html" class="hiddenlink" target="rightframe">MockContext</A><br>
+<!-- Class MockPackageManager -->
+<A HREF="android.test.mock.MockPackageManager.html" class="hiddenlink" target="rightframe">MockPackageManager</A><br>
+<!-- Class MotionEvent -->
+<A HREF="android.view.MotionEvent.html" class="hiddenlink" target="rightframe">MotionEvent</A><br>
+<!-- Field NAME -->
+<A NAME="N"></A>
+<br><font size="+2">N</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>NAME</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ExtensionsColumns.html#android.provider.Contacts.ExtensionsColumns.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.ExtensionsColumns</A>
+</nobr><br>
+<!-- Field NAME -->
+ in
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupsColumns</A>
+</nobr><br>
+<!-- Field NAME -->
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+<!-- Field NAME -->
+ in
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.PeopleColumns</A>
+</nobr><br>
+<!-- Class NeighboringCellInfo -->
+<i>NeighboringCellInfo</i><br>
+ <A HREF="android.telephony.NeighboringCellInfo.html" class="hiddenlink" target="rightframe">android.telephony</A><br>
+<!-- Constructor NeighboringCellInfo -->
+ <nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.ctor_changed()" class="hiddenlink" target="rightframe">NeighboringCellInfo
+()</A></nobr> constructor<br>
+<!-- Constructor NeighboringCellInfo -->
+ <nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.ctor_changed(int, int)" class="hiddenlink" target="rightframe">NeighboringCellInfo
+(<code>int, int</code>)</A></nobr> constructor<br>
+<!-- Class NinePatchDrawable -->
+<i>NinePatchDrawable</i><br>
+ <A HREF="android.graphics.drawable.NinePatchDrawable.html" class="hiddenlink" target="rightframe">android.graphics.drawable</A><br>
+<!-- Constructor NinePatchDrawable -->
+ <nobr><A HREF="android.graphics.drawable.NinePatchDrawable.html#android.graphics.drawable.NinePatchDrawable.ctor_changed(android.graphics.Bitmap, byte[], android.graphics.Rect, java.lang.String)" class="hiddenlink" target="rightframe">NinePatchDrawable
+(<code>Bitmap, byte[], Rect, String</code>)</A></nobr> constructor<br>
+<!-- Field NOTES -->
+<i>NOTES</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.NOTES" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupsColumns</A>
+</nobr><br>
+<!-- Field NOTES -->
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.NOTES" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+<!-- Field NOTES -->
+ in
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.NOTES" class="hiddenlink" target="rightframe">android.provider.Contacts.PeopleColumns</A>
+</nobr><br>
+<!-- Class Notification -->
+<A HREF="android.app.Notification.html" class="hiddenlink" target="rightframe">Notification</A><br>
+<!-- Class NotificationManager -->
+<A HREF="android.app.NotificationManager.html" class="hiddenlink" target="rightframe">NotificationManager</A><br>
+<!-- Field NUMBER -->
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.NUMBER" class="hiddenlink" target="rightframe">NUMBER</A>
+</nobr><br>
+<!-- Field NUMBER_KEY -->
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.NUMBER_KEY" class="hiddenlink" target="rightframe">NUMBER_KEY</A>
+</nobr><br>
+<!-- Method onSignalStrengthChanged -->
+<A NAME="O"></A>
+<br><font size="+2">O</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.telephony.PhoneStateListener.html#android.telephony.PhoneStateListener.onSignalStrengthChanged_changed(int)" class="hiddenlink" target="rightframe">onSignalStrengthChanged
+(<code>int</code>)</A></nobr><br>
+<!-- Method onStart -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.onStart_changed(android.content.Intent, int)" class="hiddenlink" target="rightframe">onStart
+(<code>Intent, int</code>)</A></nobr><br>
+<!-- Method openContactPhotoInputStream -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.openContactPhotoInputStream_changed(android.content.ContentResolver, android.net.Uri)" class="hiddenlink" target="rightframe">openContactPhotoInputStream
+(<code>ContentResolver, Uri</code>)</A></nobr><br>
+<!-- Class PackageInfo -->
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.content.pm.PackageInfo.html" class="hiddenlink" target="rightframe">PackageInfo</A><br>
+<!-- Class PackageManager -->
+<A HREF="android.content.pm.PackageManager.html" class="hiddenlink" target="rightframe">PackageManager</A><br>
+<!-- Method peekWallpaper -->
+<nobr><A HREF="android.content.Context.html#android.content.Context.peekWallpaper_changed()" class="hiddenlink" target="rightframe">peekWallpaper
+()</A></nobr><br>
+<!-- Field PERSON_ID -->
+<i>PERSON_ID</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+<!-- Field PERSON_ID -->
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+<!-- Field PERSON_ID -->
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+<!-- Field PERSON_ID -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field PERSON_ID -->
+ in
+<nobr><A HREF="android.provider.Contacts.People.Extensions.html#android.provider.Contacts.People.Extensions.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Extensions</A>
+</nobr><br>
+<!-- Field PERSON_ID -->
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<!-- Field PERSON_ID -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.PhotosColumns</A>
+</nobr><br>
+<!-- Field PHONE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONE" class="hiddenlink" target="rightframe">PHONE</A>
+</nobr><br>
+<!-- Field PHONE_ISPRIMARY -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONE_ISPRIMARY" class="hiddenlink" target="rightframe">PHONE_ISPRIMARY</A>
+</nobr><br>
+<!-- Field PHONE_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONE_TYPE" class="hiddenlink" target="rightframe">PHONE_TYPE</A>
+</nobr><br>
+<!-- Class PhoneNumberUtils -->
+<A HREF="android.telephony.PhoneNumberUtils.html" class="hiddenlink" target="rightframe">PhoneNumberUtils</A><br>
+<!-- Class PhoneStateListener -->
+<A HREF="android.telephony.PhoneStateListener.html" class="hiddenlink" target="rightframe">PhoneStateListener</A><br>
+<!-- Field PHONETIC_NAME -->
+<i>PHONETIC_NAME</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONETIC_NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+<!-- Field PHONETIC_NAME -->
+ in
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.PHONETIC_NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.PeopleColumns</A>
+</nobr><br>
+<!-- Field PHOTO_VERSION -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.PHOTO_VERSION" class="hiddenlink" target="rightframe">PHOTO_VERSION</A>
+</nobr><br>
+<!-- Class PixelFormat -->
+<A HREF="android.graphics.PixelFormat.html" class="hiddenlink" target="rightframe">PixelFormat</A><br>
+<!-- Class Plugin -->
+<i>Plugin</i><br>
+ <A HREF="android.webkit.Plugin.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<!-- Constructor Plugin -->
+ <nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.ctor_changed(java.lang.String, java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">Plugin
+(<code>String, String, String, String</code>)</A></nobr> constructor<br>
+<!-- Method pluginClicked -->
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.pluginClicked_changed(android.content.Context, int)" class="hiddenlink" target="rightframe">pluginClicked
+(<code>Context, int</code>)</A></nobr><br>
+<!-- Class PluginData -->
+<i>PluginData</i><br>
+ <A HREF="android.webkit.PluginData.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<!-- Constructor PluginData -->
+ <nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.ctor_changed(java.io.InputStream, long, java.util.Map<java.lang.String, java.lang.String[]>, int)" class="hiddenlink" target="rightframe">PluginData
+(<code>InputStream, long, Map<String, String[]>, int</code>)</A></nobr> constructor<br>
+<!-- Class PluginList -->
+<i>PluginList</i><br>
+ <A HREF="android.webkit.PluginList.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<!-- Constructor PluginList -->
+ <nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.ctor_changed()" class="hiddenlink" target="rightframe">PluginList
+()</A></nobr> constructor<br>
+<!-- Field POSTAL -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.POSTAL" class="hiddenlink" target="rightframe">POSTAL</A>
+</nobr><br>
+<!-- Field POSTAL_ISPRIMARY -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.POSTAL_ISPRIMARY" class="hiddenlink" target="rightframe">POSTAL_ISPRIMARY</A>
+</nobr><br>
+<!-- Field POSTAL_LOCATION_LATITUDE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.POSTAL_LOCATION_LATITUDE" class="hiddenlink" target="rightframe">POSTAL_LOCATION_LATITUDE</A>
+</nobr><br>
+<!-- Field POSTAL_LOCATION_LONGITUDE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.POSTAL_LOCATION_LONGITUDE" class="hiddenlink" target="rightframe">POSTAL_LOCATION_LONGITUDE</A>
+</nobr><br>
+<!-- Field POSTAL_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.POSTAL_TYPE" class="hiddenlink" target="rightframe">POSTAL_TYPE</A>
+</nobr><br>
+<!-- Class PotentialDeadlockError -->
+<A HREF="dalvik.system.PotentialDeadlockError.html" class="hiddenlink" target="rightframe">PotentialDeadlockError</A><br>
+<!-- Field PRIMARY_EMAIL_ID -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.PRIMARY_EMAIL_ID" class="hiddenlink" target="rightframe">PRIMARY_EMAIL_ID</A>
+</nobr><br>
+<!-- Field PRIMARY_ORGANIZATION_ID -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.PRIMARY_ORGANIZATION_ID" class="hiddenlink" target="rightframe">PRIMARY_ORGANIZATION_ID</A>
+</nobr><br>
+<!-- Field PRIMARY_PHONE_ID -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.PRIMARY_PHONE_ID" class="hiddenlink" target="rightframe">PRIMARY_PHONE_ID</A>
+</nobr><br>
+<!-- Field PROTOCOL_AIM -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_AIM" class="hiddenlink" target="rightframe">PROTOCOL_AIM</A>
+</nobr><br>
+<!-- Field PROTOCOL_GOOGLE_TALK -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_GOOGLE_TALK" class="hiddenlink" target="rightframe">PROTOCOL_GOOGLE_TALK</A>
+</nobr><br>
+<!-- Field PROTOCOL_ICQ -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_ICQ" class="hiddenlink" target="rightframe">PROTOCOL_ICQ</A>
+</nobr><br>
+<!-- Field PROTOCOL_JABBER -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_JABBER" class="hiddenlink" target="rightframe">PROTOCOL_JABBER</A>
+</nobr><br>
+<!-- Field PROTOCOL_MSN -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_MSN" class="hiddenlink" target="rightframe">PROTOCOL_MSN</A>
+</nobr><br>
+<!-- Field PROTOCOL_QQ -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_QQ" class="hiddenlink" target="rightframe">PROTOCOL_QQ</A>
+</nobr><br>
+<!-- Field PROTOCOL_SKYPE -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_SKYPE" class="hiddenlink" target="rightframe">PROTOCOL_SKYPE</A>
+</nobr><br>
+<!-- Field PROTOCOL_YAHOO -->
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_YAHOO" class="hiddenlink" target="rightframe">PROTOCOL_YAHOO</A>
+</nobr><br>
+<!-- Class ProviderInfo -->
+<A HREF="android.content.pm.ProviderInfo.html" class="hiddenlink" target="rightframe">ProviderInfo</A><br>
+<!-- Method queryGroups -->
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.queryGroups_changed(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe">queryGroups
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<!-- Class R.attr -->
+<A NAME="R"></A>
+<br><font size="+2">R</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.R.attr.html" class="hiddenlink" target="rightframe">R.attr</A><br>
+<!-- Class R.drawable -->
+<A HREF="android.R.drawable.html" class="hiddenlink" target="rightframe">R.drawable</A><br>
+<!-- Class R.style -->
+<A HREF="android.R.style.html" class="hiddenlink" target="rightframe">R.style</A><br>
+<!-- Field RAW_CONTENT_URI -->
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.RAW_CONTENT_URI" class="hiddenlink" target="rightframe">RAW_CONTENT_URI</A>
+</nobr><br>
+<!-- Method refreshPlugins -->
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.refreshPlugins_changed(boolean)" class="hiddenlink" target="rightframe">refreshPlugins
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method registerHandler -->
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.registerHandler_changed(android.webkit.UrlInterceptHandler)" class="hiddenlink" target="rightframe">registerHandler
+(<code>UrlInterceptHandler</code>)</A></nobr><br>
+<!-- Method removePlugin -->
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.removePlugin_changed(android.webkit.Plugin)" class="hiddenlink" target="rightframe">removePlugin
+(<code>Plugin</code>)</A></nobr><br>
+<!-- Class ResolveInfo -->
+<A HREF="android.content.pm.ResolveInfo.html" class="hiddenlink" target="rightframe">ResolveInfo</A><br>
+<!-- Field ROUTE_ALL -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_ALL" class="hiddenlink" target="rightframe">ROUTE_ALL</A>
+</nobr><br>
+<!-- Field ROUTE_BLUETOOTH_A2DP -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_BLUETOOTH_A2DP" class="hiddenlink" target="rightframe">ROUTE_BLUETOOTH_A2DP</A>
+</nobr><br>
+<!-- Field ROUTE_BLUETOOTH_SCO -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_BLUETOOTH_SCO" class="hiddenlink" target="rightframe">ROUTE_BLUETOOTH_SCO</A>
+</nobr><br>
+<!-- Field ROUTE_EARPIECE -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_EARPIECE" class="hiddenlink" target="rightframe">ROUTE_EARPIECE</A>
+</nobr><br>
+<!-- Field ROUTE_HEADSET -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_HEADSET" class="hiddenlink" target="rightframe">ROUTE_HEADSET</A>
+</nobr><br>
+<!-- Field ROUTE_SPEAKER -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_SPEAKER" class="hiddenlink" target="rightframe">ROUTE_SPEAKER</A>
+</nobr><br>
+<!-- Field SEARCH_SUGGESTION_CLICKED -->
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SEARCH_SUGGESTION_CLICKED" class="hiddenlink" target="rightframe">SEARCH_SUGGESTION_CLICKED</A>
+</nobr><br>
+<!-- Field SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED -->
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED" class="hiddenlink" target="rightframe">SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED</A>
+</nobr><br>
+<!-- Field SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED -->
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED" class="hiddenlink" target="rightframe">SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED</A>
+</nobr><br>
+<!-- Class SearchManager -->
+<A HREF="android.app.SearchManager.html" class="hiddenlink" target="rightframe">SearchManager</A><br>
+<!-- Field SECONDARY_EMAIL -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL" class="hiddenlink" target="rightframe">SECONDARY_EMAIL</A>
+</nobr><br>
+<!-- Field SECONDARY_EMAIL_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL_TYPE" class="hiddenlink" target="rightframe">SECONDARY_EMAIL_TYPE</A>
+</nobr><br>
+<!-- Field SECONDARY_PHONE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_PHONE" class="hiddenlink" target="rightframe">SECONDARY_PHONE</A>
+</nobr><br>
+<!-- Field SECONDARY_PHONE_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_PHONE_TYPE" class="hiddenlink" target="rightframe">SECONDARY_PHONE_TYPE</A>
+</nobr><br>
+<!-- Field SEND_TO_VOICEMAIL -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.SEND_TO_VOICEMAIL" class="hiddenlink" target="rightframe">SEND_TO_VOICEMAIL</A>
+</nobr><br>
+<!-- Class Service -->
+<A HREF="android.app.Service.html" class="hiddenlink" target="rightframe">Service</A><br>
+<!-- Class ServiceInfo -->
+<A HREF="android.content.pm.ServiceInfo.html" class="hiddenlink" target="rightframe">ServiceInfo</A><br>
+<!-- Method setBluetoothA2dpOn -->
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.setBluetoothA2dpOn_changed(boolean)" class="hiddenlink" target="rightframe">setBluetoothA2dpOn
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setCid -->
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.setCid_changed(int)" class="hiddenlink" target="rightframe">setCid
+(<code>int</code>)</A></nobr><br>
+<!-- Method setClickHandler -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setClickHandler_changed(android.webkit.Plugin.PreferencesClickHandler)" class="hiddenlink" target="rightframe">setClickHandler
+(<code>PreferencesClickHandler</code>)</A></nobr><br>
+<!-- Method setDescription -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setDescription_changed(java.lang.String)" class="hiddenlink" target="rightframe">setDescription
+(<code>String</code>)</A></nobr><br>
+<!-- Method setFileName -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setFileName_changed(java.lang.String)" class="hiddenlink" target="rightframe">setFileName
+(<code>String</code>)</A></nobr><br>
+<!-- Method setForeground -->
+<nobr><A HREF="android.app.Service.html#android.app.Service.setForeground_changed(boolean)" class="hiddenlink" target="rightframe">setForeground
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setInstrumentaiton -->
+<nobr><A HREF="android.test.AndroidTestRunner.html#android.test.AndroidTestRunner.setInstrumentaiton_changed(android.app.Instrumentation)" class="hiddenlink" target="rightframe">setInstrumentaiton
+(<code>Instrumentation</code>)</A></nobr><br>
+<!-- Method setName -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setName_changed(java.lang.String)" class="hiddenlink" target="rightframe">setName
+(<code>String</code>)</A></nobr><br>
+<!-- Method setPath -->
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setPath_changed(java.lang.String)" class="hiddenlink" target="rightframe">setPath
+(<code>String</code>)</A></nobr><br>
+<!-- Method setPhotoData -->
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.setPhotoData_changed(android.content.ContentResolver, android.net.Uri, byte[])" class="hiddenlink" target="rightframe">setPhotoData
+(<code>ContentResolver, Uri, byte[]</code>)</A></nobr><br>
+<!-- Method setRssi -->
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.setRssi_changed(int)" class="hiddenlink" target="rightframe">setRssi
+(<code>int</code>)</A></nobr><br>
+<!-- Method setSetting -->
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.setSetting_changed(android.content.ContentResolver, java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">setSetting
+(<code>ContentResolver, String, String, String</code>)</A></nobr><br>
+<!-- Class Settings -->
+<A HREF="android.provider.Settings.html" class="hiddenlink" target="rightframe">Settings</A><br>
+<!-- Class Settings.System -->
+<A HREF="android.provider.Settings.System.html" class="hiddenlink" target="rightframe">Settings.System</A><br>
+<!-- Method setUrlInterceptDisabled -->
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.setUrlInterceptDisabled_changed(boolean)" class="hiddenlink" target="rightframe">setUrlInterceptDisabled
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setUseDoubleTree -->
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setUseDoubleTree_changed(boolean)" class="hiddenlink" target="rightframe">setUseDoubleTree
+(<code>boolean</code>)</A></nobr><br>
+<!-- Method setWallpaper -->
+<i>setWallpaper</i><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.setWallpaper_changed(android.graphics.Bitmap)" class="hiddenlink" target="rightframe">type
+(<code>Bitmap</code>) in android.content.Context
+</A></nobr><br>
+<!-- Method setWallpaper -->
+ <nobr><A HREF="android.content.Context.html#android.content.Context.setWallpaper_changed(java.io.InputStream)" class="hiddenlink" target="rightframe">type
+(<code>InputStream</code>) in android.content.Context
+</A></nobr><br>
+<!-- Field SHOULD_SYNC -->
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.SHOULD_SYNC" class="hiddenlink" target="rightframe">SHOULD_SYNC</A>
+</nobr><br>
+<!-- Field SHOW_OR_CREATE_CONTACT -->
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SHOW_OR_CREATE_CONTACT" class="hiddenlink" target="rightframe">SHOW_OR_CREATE_CONTACT</A>
+</nobr><br>
+<!-- Class SimpleCursorTreeAdapter -->
+<A HREF="android.widget.SimpleCursorTreeAdapter.html" class="hiddenlink" target="rightframe">SimpleCursorTreeAdapter</A><br>
+<!-- Class Socket -->
+<i>Socket</i><br>
+ <A HREF="java.net.Socket.html" class="hiddenlink" target="rightframe">java.net</A><br>
+<!-- Constructor Socket -->
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed()" class="hiddenlink" target="rightframe">Socket
+()</A></nobr> constructor<br>
+<!-- Constructor Socket -->
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.lang.String, int)" class="hiddenlink" target="rightframe">Socket
+(<code>String, int</code>)</A></nobr> constructor<br>
+<!-- Constructor Socket -->
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.lang.String, int, java.net.InetAddress, int)" class="hiddenlink" target="rightframe">Socket
+(<code>String, int, InetAddress, int</code>)</A></nobr> constructor<br>
+<!-- Constructor Socket -->
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.net.Proxy)" class="hiddenlink" target="rightframe">Socket
+(<code>Proxy</code>)</A></nobr> constructor<br>
+<!-- Constructor Socket -->
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.net.SocketImpl)" class="hiddenlink" target="rightframe">Socket
+(<code>SocketImpl</code>)</A></nobr> constructor<br>
+<!-- Class SQLiteDatabase -->
+<A HREF="android.database.sqlite.SQLiteDatabase.html" class="hiddenlink" target="rightframe">SQLiteDatabase</A><br>
+<!-- Class StaleDexCacheError -->
+<A HREF="dalvik.system.StaleDexCacheError.html" class="hiddenlink" target="rightframe">StaleDexCacheError</A><br>
+<!-- Field STARRED -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.STARRED" class="hiddenlink" target="rightframe">STARRED</A>
+</nobr><br>
+<!-- Method startSync -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.startSync_changed(android.net.Uri, android.os.Bundle)" class="hiddenlink" target="rightframe">startSync
+(<code>Uri, Bundle</code>)</A></nobr><br>
+<!-- Class String -->
+<i>String</i><br>
+ <A HREF="java.lang.String.html" class="hiddenlink" target="rightframe">java.lang</A><br>
+<!-- Constructor String -->
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed()" class="hiddenlink" target="rightframe">String
+()</A></nobr> constructor<br>
+<!-- Constructor String -->
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[])" class="hiddenlink" target="rightframe">String
+(<code>byte[]</code>)</A></nobr> constructor<br>
+<!-- Constructor String -->
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[], int)" class="hiddenlink" target="rightframe">String
+(<code>byte[], int</code>)</A></nobr> constructor<br>
+<!-- Constructor String -->
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[], int, int)" class="hiddenlink" target="rightframe">String
+(<code>byte[], int, int</code>)</A></nobr> constructor<br>
+<!-- Constructor String -->
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[], int, int, int)" class="hiddenlink" target="rightframe">String
+(<code>byte[], int, int, int</code>)</A></nobr> constructor<br>
+<!-- Class Surface -->
+<A HREF="android.view.Surface.html" class="hiddenlink" target="rightframe">Surface</A><br>
+<!-- Field SURFACE_TYPE_GPU -->
+<nobr><A HREF="android.view.SurfaceHolder.html#android.view.SurfaceHolder.SURFACE_TYPE_GPU" class="hiddenlink" target="rightframe">SURFACE_TYPE_GPU</A>
+</nobr><br>
+<!-- Field SURFACE_TYPE_HARDWARE -->
+<nobr><A HREF="android.view.SurfaceHolder.html#android.view.SurfaceHolder.SURFACE_TYPE_HARDWARE" class="hiddenlink" target="rightframe">SURFACE_TYPE_HARDWARE</A>
+</nobr><br>
+<!-- Class SurfaceHolder -->
+<A HREF="android.view.SurfaceHolder.html" class="hiddenlink" target="rightframe"><i>SurfaceHolder</i></A><br>
+<!-- Class SurfaceView -->
+<A HREF="android.view.SurfaceView.html" class="hiddenlink" target="rightframe">SurfaceView</A><br>
+<!-- Field SYNC_ERROR -->
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.SYNC_ERROR" class="hiddenlink" target="rightframe">SYNC_ERROR</A>
+</nobr><br>
+<!-- Field SYNC_EVERYTHING -->
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.SYNC_EVERYTHING" class="hiddenlink" target="rightframe">SYNC_EVERYTHING</A>
+</nobr><br>
+<!-- Field SYNC_EXTRAS_ACCOUNT -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_ACCOUNT" class="hiddenlink" target="rightframe">SYNC_EXTRAS_ACCOUNT</A>
+</nobr><br>
+<!-- Field SYNC_EXTRAS_FORCE -->
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_FORCE" class="hiddenlink" target="rightframe">SYNC_EXTRAS_FORCE</A>
+</nobr><br>
+<!-- Field SYSTEM_ID -->
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.SYSTEM_ID" class="hiddenlink" target="rightframe">SYSTEM_ID</A>
+</nobr><br>
+<!-- Class TelephonyManager -->
+<A NAME="T"></A>
+<br><font size="+2">T</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.telephony.TelephonyManager.html" class="hiddenlink" target="rightframe">TelephonyManager</A><br>
+<!-- Class TemporaryDirectory -->
+<A HREF="dalvik.system.TemporaryDirectory.html" class="hiddenlink" target="rightframe">TemporaryDirectory</A><br>
+<!-- Field TERTIARY_EMAIL -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_EMAIL" class="hiddenlink" target="rightframe">TERTIARY_EMAIL</A>
+</nobr><br>
+<!-- Field TERTIARY_EMAIL_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_EMAIL_TYPE" class="hiddenlink" target="rightframe">TERTIARY_EMAIL_TYPE</A>
+</nobr><br>
+<!-- Field TERTIARY_PHONE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_PHONE" class="hiddenlink" target="rightframe">TERTIARY_PHONE</A>
+</nobr><br>
+<!-- Field TERTIARY_PHONE_TYPE -->
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_PHONE_TYPE" class="hiddenlink" target="rightframe">TERTIARY_PHONE_TYPE</A>
+</nobr><br>
+<!-- Class TextPaint -->
+<A HREF="android.text.TextPaint.html" class="hiddenlink" target="rightframe">TextPaint</A><br>
+<!-- Field TIMES_CONTACTED -->
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.TIMES_CONTACTED" class="hiddenlink" target="rightframe">TIMES_CONTACTED</A>
+</nobr><br>
+<!-- Field TITLE -->
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TITLE" class="hiddenlink" target="rightframe">TITLE</A>
+</nobr><br>
+<!-- Field TITLE_EXTRA_KEY -->
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.TITLE_EXTRA_KEY" class="hiddenlink" target="rightframe">TITLE_EXTRA_KEY</A>
+</nobr><br>
+<!-- Class ToneGenerator -->
+<A HREF="android.media.ToneGenerator.html" class="hiddenlink" target="rightframe">ToneGenerator</A><br>
+<!-- Class TouchDex -->
+<A HREF="dalvik.system.TouchDex.html" class="hiddenlink" target="rightframe">TouchDex</A><br>
+<!-- Field TYPE -->
+<i>TYPE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field TYPE -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Field TYPE_CUSTOM -->
+<i>TYPE_CUSTOM</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_CUSTOM" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field TYPE_CUSTOM -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE_CUSTOM" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field TYPE_CUSTOM -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_CUSTOM" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Field TYPE_FAX_HOME -->
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_FAX_HOME" class="hiddenlink" target="rightframe">TYPE_FAX_HOME</A>
+</nobr><br>
+<!-- Field TYPE_FAX_WORK -->
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_FAX_WORK" class="hiddenlink" target="rightframe">TYPE_FAX_WORK</A>
+</nobr><br>
+<!-- Field TYPE_HOME -->
+<i>TYPE_HOME</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_HOME" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field TYPE_HOME -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_HOME" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Field TYPE_MOBILE -->
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_MOBILE" class="hiddenlink" target="rightframe">TYPE_MOBILE</A>
+</nobr><br>
+<!-- Field TYPE_OTHER -->
+<i>TYPE_OTHER</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_OTHER" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field TYPE_OTHER -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE_OTHER" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field TYPE_OTHER -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_OTHER" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Field TYPE_PAGER -->
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_PAGER" class="hiddenlink" target="rightframe">TYPE_PAGER</A>
+</nobr><br>
+<!-- Field TYPE_WORK -->
+<i>TYPE_WORK</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_WORK" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+<!-- Field TYPE_WORK -->
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE_WORK" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<!-- Field TYPE_WORK -->
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_WORK" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<!-- Method unregisterHandler -->
+<A NAME="U"></A>
+<br><font size="+2">U</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.unregisterHandler_changed(android.webkit.UrlInterceptHandler)" class="hiddenlink" target="rightframe">unregisterHandler
+(<code>UrlInterceptHandler</code>)</A></nobr><br>
+<!-- Method urlInterceptDisabled -->
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.urlInterceptDisabled_changed()" class="hiddenlink" target="rightframe">urlInterceptDisabled
+()</A></nobr><br>
+<!-- Class UrlInterceptHandler -->
+<A HREF="android.webkit.UrlInterceptHandler.html" class="hiddenlink" target="rightframe"><i>UrlInterceptHandler</i></A><br>
+<!-- Class UrlInterceptRegistry -->
+<A HREF="android.webkit.UrlInterceptRegistry.html" class="hiddenlink" target="rightframe">UrlInterceptRegistry</A><br>
+<!-- Field VALUE -->
+<A NAME="V"></A>
+<br><font size="+2">V</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>VALUE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ExtensionsColumns.html#android.provider.Contacts.ExtensionsColumns.VALUE" class="hiddenlink" target="rightframe">android.provider.Contacts.ExtensionsColumns</A>
+</nobr><br>
+<!-- Field VALUE -->
+ in
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns.VALUE" class="hiddenlink" target="rightframe">android.provider.Contacts.SettingsColumns</A>
+</nobr><br>
+<!-- Class VideoView -->
+<A HREF="android.widget.VideoView.html" class="hiddenlink" target="rightframe">VideoView</A><br>
+<!-- Class View -->
+<A HREF="android.view.View.html" class="hiddenlink" target="rightframe">View</A><br>
+<!-- Class ViewConfiguration -->
+<A HREF="android.view.ViewConfiguration.html" class="hiddenlink" target="rightframe">ViewConfiguration</A><br>
+<!-- Class VMDebug -->
+<A HREF="dalvik.system.VMDebug.html" class="hiddenlink" target="rightframe">VMDebug</A><br>
+<!-- Class VMRuntime -->
+<A HREF="dalvik.system.VMRuntime.html" class="hiddenlink" target="rightframe">VMRuntime</A><br>
+<!-- Class VMStack -->
+<A HREF="dalvik.system.VMStack.html" class="hiddenlink" target="rightframe">VMStack</A><br>
+<!-- Class WebChromeClient -->
+<A NAME="W"></A>
+<br><font size="+2">W</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.webkit.WebChromeClient.html" class="hiddenlink" target="rightframe">WebChromeClient</A><br>
+<!-- Class WebSettings -->
+<A HREF="android.webkit.WebSettings.html" class="hiddenlink" target="rightframe">WebSettings</A><br>
+<!-- Class WebView -->
+<A HREF="android.webkit.WebView.html" class="hiddenlink" target="rightframe">WebView</A><br>
+<!-- Class WebViewClient -->
+<A HREF="android.webkit.WebViewClient.html" class="hiddenlink" target="rightframe">WebViewClient</A><br>
+<!-- Class Window.Callback -->
+<A HREF="android.view.Window.Callback.html" class="hiddenlink" target="rightframe"><i>Window.Callback</i></A><br>
+<!-- Class WindowManager.LayoutParams -->
+<A HREF="android.view.WindowManager.LayoutParams.html" class="hiddenlink" target="rightframe">WindowManager.LayoutParams</A><br>
+<!-- Class Zygote -->
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="dalvik.system.Zygote.html" class="hiddenlink" target="rightframe">Zygote</A><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/alldiffs_index_removals.html b/docs/html/sdk/api_diff/5/changes/alldiffs_index_removals.html
new file mode 100644
index 0000000..f4d7aeb
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/alldiffs_index_removals.html
@@ -0,0 +1,72 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+All Removals Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for All Differences" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="alldiffs_index_all.html" xclass="hiddenlink">All Differences</a>
+ <br>
+<b>Removals</b>
+ <br>
+<A HREF="alldiffs_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<A HREF="alldiffs_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<!-- Constructor BitmapDrawable -->
+<A NAME="B"></A>
+<br><font size="+2">B</font>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>BitmapDrawable</i><br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_removed()" class="hiddenlink" target="rightframe"><strike>BitmapDrawable</strike>
+()</A></nobr> constructor<br>
+<!-- Constructor BitmapDrawable -->
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_removed(android.graphics.Bitmap)" class="hiddenlink" target="rightframe"><strike>BitmapDrawable</strike>
+(<code>Bitmap</code>)</A></nobr> constructor<br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.Manifest.permission.html b/docs/html/sdk/api_diff/5/changes/android.Manifest.permission.html
new file mode 100644
index 0000000..e3cd25c
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.Manifest.permission.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.Manifest.permission
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.<A HREF="../../../../reference/android/Manifest.permission.html" target="_top"><font size="+2"><code>Manifest.permission</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.Manifest.permission.ACCOUNT_MANAGER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/Manifest.permission.html#ACCOUNT_MANAGER" target="_top"><code>ACCOUNT_MANAGER</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.Manifest.permission.AUTHENTICATE_ACCOUNTS"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/Manifest.permission.html#AUTHENTICATE_ACCOUNTS" target="_top"><code>AUTHENTICATE_ACCOUNTS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.Manifest.permission.MANAGE_ACCOUNTS"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/Manifest.permission.html#MANAGE_ACCOUNTS" target="_top"><code>MANAGE_ACCOUNTS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.Manifest.permission.USE_CREDENTIALS"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/Manifest.permission.html#USE_CREDENTIALS" target="_top"><code>USE_CREDENTIALS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.R.attr.html b/docs/html/sdk/api_diff/5/changes/android.R.attr.html
new file mode 100644
index 0000000..1e6b5af
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.R.attr.html
@@ -0,0 +1,339 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.R.attr
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.<A HREF="../../../../reference/android/R.attr.html" target="_top"><font size="+2"><code>R.attr</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.accountPreferences"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#accountPreferences" target="_top"><code>accountPreferences</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.accountType"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#accountType" target="_top"><code>accountType</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.colorBackgroundCacheHint"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#colorBackgroundCacheHint" target="_top"><code>colorBackgroundCacheHint</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.contentAuthority"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#contentAuthority" target="_top"><code>contentAuthority</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.detachWallpaper"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#detachWallpaper" target="_top"><code>detachWallpaper</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.detailColumn"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#detailColumn" target="_top"><code>detailColumn</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.detailSocialSummary"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#detailSocialSummary" target="_top"><code>detailSocialSummary</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.dropDownHorizontalOffset"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#dropDownHorizontalOffset" target="_top"><code>dropDownHorizontalOffset</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.dropDownVerticalOffset"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#dropDownVerticalOffset" target="_top"><code>dropDownVerticalOffset</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.fadeScrollbars"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#fadeScrollbars" target="_top"><code>fadeScrollbars</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.finishOnCloseSystemDialogs"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#finishOnCloseSystemDialogs" target="_top"><code>finishOnCloseSystemDialogs</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.killAfterRestore"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#killAfterRestore" target="_top"><code>killAfterRestore</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.required"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#required" target="_top"><code>required</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.restoreNeedsApplication"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#restoreNeedsApplication" target="_top"><code>restoreNeedsApplication</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.scrollbarDefaultDelayBeforeFade"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#scrollbarDefaultDelayBeforeFade" target="_top"><code>scrollbarDefaultDelayBeforeFade</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.scrollbarFadeDuration"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#scrollbarFadeDuration" target="_top"><code>scrollbarFadeDuration</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.smallIcon"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#smallIcon" target="_top"><code>smallIcon</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.summaryColumn"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#summaryColumn" target="_top"><code>summaryColumn</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.supportsUploading"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#supportsUploading" target="_top"><code>supportsUploading</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.textAppearanceSearchResultSubtitle"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#textAppearanceSearchResultSubtitle" target="_top"><code>textAppearanceSearchResultSubtitle</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.textAppearanceSearchResultTitle"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#textAppearanceSearchResultTitle" target="_top"><code>textAppearanceSearchResultTitle</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.thumbnail"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#thumbnail" target="_top"><code>thumbnail</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.userVisible"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#userVisible" target="_top"><code>userVisible</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.wallpaperCloseEnterAnimation"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#wallpaperCloseEnterAnimation" target="_top"><code>wallpaperCloseEnterAnimation</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.wallpaperCloseExitAnimation"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#wallpaperCloseExitAnimation" target="_top"><code>wallpaperCloseExitAnimation</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.wallpaperIntraCloseEnterAnimation"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#wallpaperIntraCloseEnterAnimation" target="_top"><code>wallpaperIntraCloseEnterAnimation</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.wallpaperIntraCloseExitAnimation"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#wallpaperIntraCloseExitAnimation" target="_top"><code>wallpaperIntraCloseExitAnimation</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.wallpaperIntraOpenEnterAnimation"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#wallpaperIntraOpenEnterAnimation" target="_top"><code>wallpaperIntraOpenEnterAnimation</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.wallpaperIntraOpenExitAnimation"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#wallpaperIntraOpenExitAnimation" target="_top"><code>wallpaperIntraOpenExitAnimation</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.wallpaperOpenEnterAnimation"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#wallpaperOpenEnterAnimation" target="_top"><code>wallpaperOpenEnterAnimation</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.wallpaperOpenExitAnimation"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#wallpaperOpenExitAnimation" target="_top"><code>wallpaperOpenExitAnimation</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.attr.windowShowWallpaper"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.attr.html#windowShowWallpaper" target="_top"><code>windowShowWallpaper</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.R.drawable.html b/docs/html/sdk/api_diff/5/changes/android.R.drawable.html
new file mode 100644
index 0000000..a569de6a
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.R.drawable.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.R.drawable
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.<A HREF="../../../../reference/android/R.drawable.html" target="_top"><font size="+2"><code>R.drawable</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.drawable.screen_background_dark_transparent"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.drawable.html#screen_background_dark_transparent" target="_top"><code>screen_background_dark_transparent</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.drawable.screen_background_light_transparent"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.drawable.html#screen_background_light_transparent" target="_top"><code>screen_background_light_transparent</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.drawable.stat_notify_sdcard_prepare"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.drawable.html#stat_notify_sdcard_prepare" target="_top"><code>stat_notify_sdcard_prepare</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.R.style.html b/docs/html/sdk/api_diff/5/changes/android.R.style.html
new file mode 100644
index 0000000..db0fd0d
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.R.style.html
@@ -0,0 +1,157 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.R.style
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.<A HREF="../../../../reference/android/R.style.html" target="_top"><font size="+2"><code>R.style</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.style.Animation_InputMethod"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.style.html#Animation_InputMethod" target="_top"><code>Animation_InputMethod</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.style.Theme_Light_WallpaperSettings"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.style.html#Theme_Light_WallpaperSettings" target="_top"><code>Theme_Light_WallpaperSettings</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.style.Theme_Wallpaper"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.style.html#Theme_Wallpaper" target="_top"><code>Theme_Wallpaper</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.style.Theme_WallpaperSettings"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.style.html#Theme_WallpaperSettings" target="_top"><code>Theme_WallpaperSettings</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.style.Theme_Wallpaper_NoTitleBar"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.style.html#Theme_Wallpaper_NoTitleBar" target="_top"><code>Theme_Wallpaper_NoTitleBar</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.R.style.Theme_Wallpaper_NoTitleBar_Fullscreen"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/R.style.html#Theme_Wallpaper_NoTitleBar_Fullscreen" target="_top"><code>Theme_Wallpaper_NoTitleBar_Fullscreen</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.app.Activity.html b/docs/html/sdk/api_diff/5/changes/android.app.Activity.html
new file mode 100644
index 0000000..2d6da09
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.app.Activity.html
@@ -0,0 +1,171 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.app.Activity
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.app.<A HREF="../../../../reference/android/app/Activity.html" target="_top"><font size="+2"><code>Activity</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Activity.onAttachedToWindow_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Activity.html#onAttachedToWindow()" target="_top"><code>onAttachedToWindow</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Activity.onBackPressed_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Activity.html#onBackPressed()" target="_top"><code>onBackPressed</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Activity.onDetachedFromWindow_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Activity.html#onDetachedFromWindow()" target="_top"><code>onDetachedFromWindow</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Activity.onKeyLongPress_added(int, android.view.KeyEvent)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/app/Activity.html#onKeyLongPress(int, android.view.KeyEvent)" target="_top"><code>onKeyLongPress</code></A>(<code>int,</nobr> KeyEvent<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Activity.overridePendingTransition_added(int, int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Activity.html#overridePendingTransition(int, int)" target="_top"><code>overridePendingTransition</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Activity.startIntentSenderForResult_added(android.content.IntentSender, int, android.content.Intent, int, int, int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Activity.html#startIntentSenderForResult(android.content.IntentSender, int, android.content.Intent, int, int, int)" target="_top"><code>startIntentSenderForResult</code></A>(<code>IntentSender,</nobr> int<nobr>,</nobr> Intent<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Activity.startIntentSenderFromChild_added(android.app.Activity, android.content.IntentSender, int, android.content.Intent, int, int, int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Activity.html#startIntentSenderFromChild(android.app.Activity, android.content.IntentSender, int, android.content.Intent, int, int, int)" target="_top"><code>startIntentSenderFromChild</code></A>(<code>Activity,</nobr> IntentSender<nobr>,</nobr> int<nobr>,</nobr> Intent<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Activity.triggerSearch_added(java.lang.String, android.os.Bundle)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Activity.html#triggerSearch(java.lang.String, android.os.Bundle)" target="_top"><code>triggerSearch</code></A>(<code>String,</nobr> Bundle<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.app.ActivityManager.RunningAppProcessInfo.html b/docs/html/sdk/api_diff/5/changes/android.app.ActivityManager.RunningAppProcessInfo.html
new file mode 100644
index 0000000..ddf1030
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.app.ActivityManager.RunningAppProcessInfo.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.app.ActivityManager.RunningAppProcessInfo
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.app.<A HREF="../../../../reference/android/app/ActivityManager.RunningAppProcessInfo.html" target="_top"><font size="+2"><code>ActivityManager.RunningAppProcessInfo</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningAppProcessInfo.REASON_PROVIDER_IN_USE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningAppProcessInfo.html#REASON_PROVIDER_IN_USE" target="_top"><code>REASON_PROVIDER_IN_USE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningAppProcessInfo.REASON_SERVICE_IN_USE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningAppProcessInfo.html#REASON_SERVICE_IN_USE" target="_top"><code>REASON_SERVICE_IN_USE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningAppProcessInfo.REASON_UNKNOWN"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningAppProcessInfo.html#REASON_UNKNOWN" target="_top"><code>REASON_UNKNOWN</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningAppProcessInfo.importanceReasonCode"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningAppProcessInfo.html#importanceReasonCode" target="_top"><code>importanceReasonCode</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningAppProcessInfo.importanceReasonComponent"></A>
+ <nobr><code>ComponentName</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningAppProcessInfo.html#importanceReasonComponent" target="_top"><code>importanceReasonComponent</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningAppProcessInfo.importanceReasonPid"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningAppProcessInfo.html#importanceReasonPid" target="_top"><code>importanceReasonPid</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningAppProcessInfo.uid"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningAppProcessInfo.html#uid" target="_top"><code>uid</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.app.ActivityManager.RunningServiceInfo.html b/docs/html/sdk/api_diff/5/changes/android.app.ActivityManager.RunningServiceInfo.html
new file mode 100644
index 0000000..e78ce2c
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.app.ActivityManager.RunningServiceInfo.html
@@ -0,0 +1,171 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.app.ActivityManager.RunningServiceInfo
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.app.<A HREF="../../../../reference/android/app/ActivityManager.RunningServiceInfo.html" target="_top"><font size="+2"><code>ActivityManager.RunningServiceInfo</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningServiceInfo.FLAG_FOREGROUND"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningServiceInfo.html#FLAG_FOREGROUND" target="_top"><code>FLAG_FOREGROUND</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningServiceInfo.FLAG_PERSISTENT_PROCESS"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningServiceInfo.html#FLAG_PERSISTENT_PROCESS" target="_top"><code>FLAG_PERSISTENT_PROCESS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningServiceInfo.FLAG_STARTED"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningServiceInfo.html#FLAG_STARTED" target="_top"><code>FLAG_STARTED</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningServiceInfo.FLAG_SYSTEM_PROCESS"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningServiceInfo.html#FLAG_SYSTEM_PROCESS" target="_top"><code>FLAG_SYSTEM_PROCESS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningServiceInfo.clientLabel"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningServiceInfo.html#clientLabel" target="_top"><code>clientLabel</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningServiceInfo.clientPackage"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningServiceInfo.html#clientPackage" target="_top"><code>clientPackage</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningServiceInfo.flags"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningServiceInfo.html#flags" target="_top"><code>flags</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.RunningServiceInfo.uid"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.RunningServiceInfo.html#uid" target="_top"><code>uid</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.app.ActivityManager.html b/docs/html/sdk/api_diff/5/changes/android.app.ActivityManager.html
new file mode 100644
index 0000000..b0393ba
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.app.ActivityManager.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.app.ActivityManager
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.app.<A HREF="../../../../reference/android/app/ActivityManager.html" target="_top"><font size="+2"><code>ActivityManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.getMemoryClass_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/ActivityManager.html#getMemoryClass()" target="_top"><code>getMemoryClass</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.getProcessMemoryInfo_added(int[])"></A>
+ <nobr><code>MemoryInfo[]</code> <A HREF="../../../../reference/android/app/ActivityManager.html#getProcessMemoryInfo(int[])" target="_top"><code>getProcessMemoryInfo</code></A>(<code>int[]</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.ActivityManager.getRunningServiceControlPanel_added(android.content.ComponentName)"></A>
+ <nobr><code>PendingIntent</code> <A HREF="../../../../reference/android/app/ActivityManager.html#getRunningServiceControlPanel(android.content.ComponentName)" target="_top"><code>getRunningServiceControlPanel</code></A>(<code>ComponentName</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.app.Dialog.html b/docs/html/sdk/api_diff/5/changes/android.app.Dialog.html
new file mode 100644
index 0000000..17a8853
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.app.Dialog.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.app.Dialog
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.app.<A HREF="../../../../reference/android/app/Dialog.html" target="_top"><font size="+2"><code>Dialog</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Dialog.onAttachedToWindow_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Dialog.html#onAttachedToWindow()" target="_top"><code>onAttachedToWindow</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Dialog.onBackPressed_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Dialog.html#onBackPressed()" target="_top"><code>onBackPressed</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Dialog.onDetachedFromWindow_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Dialog.html#onDetachedFromWindow()" target="_top"><code>onDetachedFromWindow</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Dialog.onKeyLongPress_added(int, android.view.KeyEvent)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/app/Dialog.html#onKeyLongPress(int, android.view.KeyEvent)" target="_top"><code>onKeyLongPress</code></A>(<code>int,</nobr> KeyEvent<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.app.IntentService.html b/docs/html/sdk/api_diff/5/changes/android.app.IntentService.html
new file mode 100644
index 0000000..413aa1e
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.app.IntentService.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.app.IntentService
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.app.<A HREF="../../../../reference/android/app/IntentService.html" target="_top"><font size="+2"><code>IntentService</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.IntentService.setIntentRedelivery_added(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/IntentService.html#setIntentRedelivery(boolean)" target="_top"><code>setIntentRedelivery</code></A>(<code>boolean</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.app.LauncherActivity.html b/docs/html/sdk/api_diff/5/changes/android.app.LauncherActivity.html
new file mode 100644
index 0000000..779ac1f
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.app.LauncherActivity.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.app.LauncherActivity
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.app.<A HREF="../../../../reference/android/app/LauncherActivity.html" target="_top"><font size="+2"><code>LauncherActivity</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.LauncherActivity.onQueryPackageManager_added(android.content.Intent)"></A>
+ <nobr><code>List<ResolveInfo></code> <A HREF="../../../../reference/android/app/LauncherActivity.html#onQueryPackageManager(android.content.Intent)" target="_top"><code>onQueryPackageManager</code></A>(<code>Intent</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.LauncherActivity.onSetContentView_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/LauncherActivity.html#onSetContentView()" target="_top"><code>onSetContentView</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.app.Notification.html b/docs/html/sdk/api_diff/5/changes/android.app.Notification.html
new file mode 100644
index 0000000..e668468
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.app.Notification.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.app.Notification
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.app.<A HREF="../../../../reference/android/app/Notification.html" target="_top"><font size="+2"><code>Notification</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Notification.FLAG_FOREGROUND_SERVICE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/Notification.html#FLAG_FOREGROUND_SERVICE" target="_top"><code>FLAG_FOREGROUND_SERVICE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.app.NotificationManager.html b/docs/html/sdk/api_diff/5/changes/android.app.NotificationManager.html
new file mode 100644
index 0000000..2bd5fae
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.app.NotificationManager.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.app.NotificationManager
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.app.<A HREF="../../../../reference/android/app/NotificationManager.html" target="_top"><font size="+2"><code>NotificationManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.NotificationManager.cancel_added(java.lang.String, int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/NotificationManager.html#cancel(java.lang.String, int)" target="_top"><code>cancel</code></A>(<code>String,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.NotificationManager.notify_added(java.lang.String, int, android.app.Notification)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/NotificationManager.html#notify(java.lang.String, int, android.app.Notification)" target="_top"><code>notify</code></A>(<code>String,</nobr> int<nobr>,</nobr> Notification<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.app.SearchManager.html b/docs/html/sdk/api_diff/5/changes/android.app.SearchManager.html
new file mode 100644
index 0000000..ac9f3c1
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.app.SearchManager.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.app.SearchManager
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.app.<A HREF="../../../../reference/android/app/SearchManager.html" target="_top"><font size="+2"><code>SearchManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.SearchManager.triggerSearch_added(java.lang.String, android.content.ComponentName, android.os.Bundle)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/SearchManager.html#triggerSearch(java.lang.String, android.content.ComponentName, android.os.Bundle)" target="_top"><code>triggerSearch</code></A>(<code>String,</nobr> ComponentName<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.SearchManager.SUGGEST_PARAMETER_LIMIT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/app/SearchManager.html#SUGGEST_PARAMETER_LIMIT" target="_top"><code>SUGGEST_PARAMETER_LIMIT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.app.Service.html b/docs/html/sdk/api_diff/5/changes/android.app.Service.html
new file mode 100644
index 0000000..2c92ada
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.app.Service.html
@@ -0,0 +1,221 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.app.Service
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.app.<A HREF="../../../../reference/android/app/Service.html" target="_top"><font size="+2"><code>Service</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Service.onStartCommand_added(android.content.Intent, int, int)"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/Service.html#onStartCommand(android.content.Intent, int, int)" target="_top"><code>onStartCommand</code></A>(<code>Intent,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Service.startForeground_added(int, android.app.Notification)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Service.html#startForeground(int, android.app.Notification)" target="_top"><code>startForeground</code></A>(<code>int,</nobr> Notification<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Service.stopForeground_added(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Service.html#stopForeground(boolean)" target="_top"><code>stopForeground</code></A>(<code>boolean</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Service.onStart_changed(android.content.Intent, int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Service.html#onStart(android.content.Intent, int)" target="_top"><code>onStart</code></A>(<code>Intent,</nobr> int<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Service.setForeground_changed(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/app/Service.html#setForeground(boolean)" target="_top"><code>setForeground</code></A>(<code>boolean</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Service.START_CONTINUATION_MASK"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/Service.html#START_CONTINUATION_MASK" target="_top"><code>START_CONTINUATION_MASK</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Service.START_FLAG_REDELIVERY"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/Service.html#START_FLAG_REDELIVERY" target="_top"><code>START_FLAG_REDELIVERY</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Service.START_FLAG_RETRY"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/Service.html#START_FLAG_RETRY" target="_top"><code>START_FLAG_RETRY</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Service.START_NOT_STICKY"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/Service.html#START_NOT_STICKY" target="_top"><code>START_NOT_STICKY</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Service.START_REDELIVER_INTENT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/Service.html#START_REDELIVER_INTENT" target="_top"><code>START_REDELIVER_INTENT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Service.START_STICKY"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/Service.html#START_STICKY" target="_top"><code>START_STICKY</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app.Service.START_STICKY_COMPATIBILITY"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/app/Service.html#START_STICKY_COMPATIBILITY" target="_top"><code>START_STICKY_COMPATIBILITY</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.content.BroadcastReceiver.html b/docs/html/sdk/api_diff/5/changes/android.content.BroadcastReceiver.html
new file mode 100644
index 0000000..a6b5c3e5
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.content.BroadcastReceiver.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.BroadcastReceiver
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.content.<A HREF="../../../../reference/android/content/BroadcastReceiver.html" target="_top"><font size="+2"><code>BroadcastReceiver</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.BroadcastReceiver.isInitialStickyBroadcast_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/content/BroadcastReceiver.html#isInitialStickyBroadcast()" target="_top"><code>isInitialStickyBroadcast</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.BroadcastReceiver.isOrderedBroadcast_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/content/BroadcastReceiver.html#isOrderedBroadcast()" target="_top"><code>isOrderedBroadcast</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.content.ContentProvider.html b/docs/html/sdk/api_diff/5/changes/android.content.ContentProvider.html
new file mode 100644
index 0000000..fc04c2d
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.content.ContentProvider.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.ContentProvider
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.content.<A HREF="../../../../reference/android/content/ContentProvider.html" target="_top"><font size="+2"><code>ContentProvider</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentProvider.applyBatch_added(java.util.ArrayList<android.content.ContentProviderOperation>)"></A>
+ <nobr><code>ContentProviderResult[]</code> <A HREF="../../../../reference/android/content/ContentProvider.html#applyBatch(java.util.ArrayList<android.content.ContentProviderOperation>)" target="_top"><code>applyBatch</code></A>(<code>ArrayList<ContentProviderOperation></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.content.ContentResolver.html b/docs/html/sdk/api_diff/5/changes/android.content.ContentResolver.html
new file mode 100644
index 0000000..d932016
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.content.ContentResolver.html
@@ -0,0 +1,303 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.ContentResolver
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.content.<A HREF="../../../../reference/android/content/ContentResolver.html" target="_top"><font size="+2"><code>ContentResolver</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.acquireContentProviderClient_added(android.net.Uri)"></A>
+ <nobr><code>ContentProviderClient</code> <A HREF="../../../../reference/android/content/ContentResolver.html#acquireContentProviderClient(android.net.Uri)" target="_top"><code>acquireContentProviderClient</code></A>(<code>Uri</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.acquireContentProviderClient_added(java.lang.String)"></A>
+ <nobr><code>ContentProviderClient</code> <A HREF="../../../../reference/android/content/ContentResolver.html#acquireContentProviderClient(java.lang.String)" target="_top"><code>acquireContentProviderClient</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.addStatusChangeListener_added(int, android.content.SyncStatusObserver)"></A>
+ <nobr><code>Object</code> <A HREF="../../../../reference/android/content/ContentResolver.html#addStatusChangeListener(int, android.content.SyncStatusObserver)" target="_top"><code>addStatusChangeListener</code></A>(<code>int,</nobr> SyncStatusObserver<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.applyBatch_added(java.lang.String, java.util.ArrayList<android.content.ContentProviderOperation>)"></A>
+ <nobr><code>ContentProviderResult[]</code> <A HREF="../../../../reference/android/content/ContentResolver.html#applyBatch(java.lang.String, java.util.ArrayList<android.content.ContentProviderOperation>)" target="_top"><code>applyBatch</code></A>(<code>String,</nobr> ArrayList<ContentProviderOperation><nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.cancelSync_added(android.accounts.Account, java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/ContentResolver.html#cancelSync(android.accounts.Account, java.lang.String)" target="_top"><code>cancelSync</code></A>(<code>Account,</nobr> String<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.getIsSyncable_added(android.accounts.Account, java.lang.String)"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/content/ContentResolver.html#getIsSyncable(android.accounts.Account, java.lang.String)" target="_top"><code>getIsSyncable</code></A>(<code>Account,</nobr> String<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.getMasterSyncAutomatically_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/content/ContentResolver.html#getMasterSyncAutomatically()" target="_top"><code>getMasterSyncAutomatically</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.getSyncAdapterTypes_added()"></A>
+ <nobr><code>SyncAdapterType[]</code> <A HREF="../../../../reference/android/content/ContentResolver.html#getSyncAdapterTypes()" target="_top"><code>getSyncAdapterTypes</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.getSyncAutomatically_added(android.accounts.Account, java.lang.String)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/content/ContentResolver.html#getSyncAutomatically(android.accounts.Account, java.lang.String)" target="_top"><code>getSyncAutomatically</code></A>(<code>Account,</nobr> String<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.isSyncActive_added(android.accounts.Account, java.lang.String)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/content/ContentResolver.html#isSyncActive(android.accounts.Account, java.lang.String)" target="_top"><code>isSyncActive</code></A>(<code>Account,</nobr> String<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.isSyncPending_added(android.accounts.Account, java.lang.String)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/content/ContentResolver.html#isSyncPending(android.accounts.Account, java.lang.String)" target="_top"><code>isSyncPending</code></A>(<code>Account,</nobr> String<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.removeStatusChangeListener_added(java.lang.Object)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/ContentResolver.html#removeStatusChangeListener(java.lang.Object)" target="_top"><code>removeStatusChangeListener</code></A>(<code>Object</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.requestSync_added(android.accounts.Account, java.lang.String, android.os.Bundle)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/ContentResolver.html#requestSync(android.accounts.Account, java.lang.String, android.os.Bundle)" target="_top"><code>requestSync</code></A>(<code>Account,</nobr> String<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.setIsSyncable_added(android.accounts.Account, java.lang.String, int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/ContentResolver.html#setIsSyncable(android.accounts.Account, java.lang.String, int)" target="_top"><code>setIsSyncable</code></A>(<code>Account,</nobr> String<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.setMasterSyncAutomatically_added(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/ContentResolver.html#setMasterSyncAutomatically(boolean)" target="_top"><code>setMasterSyncAutomatically</code></A>(<code>boolean</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.setSyncAutomatically_added(android.accounts.Account, java.lang.String, boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/ContentResolver.html#setSyncAutomatically(android.accounts.Account, java.lang.String, boolean)" target="_top"><code>setSyncAutomatically</code></A>(<code>Account,</nobr> String<nobr>,</nobr> boolean<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.startSync_changed(android.net.Uri, android.os.Bundle)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/ContentResolver.html#startSync(android.net.Uri, android.os.Bundle)" target="_top"><code>startSync</code></A>(<code>Uri,</nobr> Bundle<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.cancelSync_changed(android.net.Uri)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/ContentResolver.html#cancelSync(android.net.Uri)" target="_top"><code>cancelSync</code></A>(<code>Uri</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.SYNC_EXTRAS_INITIALIZE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/ContentResolver.html#SYNC_EXTRAS_INITIALIZE" target="_top"><code>SYNC_EXTRAS_INITIALIZE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.SYNC_EXTRAS_MANUAL"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/ContentResolver.html#SYNC_EXTRAS_MANUAL" target="_top"><code>SYNC_EXTRAS_MANUAL</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.SYNC_EXTRAS_ACCOUNT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/ContentResolver.html#SYNC_EXTRAS_ACCOUNT" target="_top"><code>SYNC_EXTRAS_ACCOUNT</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContentResolver.SYNC_EXTRAS_FORCE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/ContentResolver.html#SYNC_EXTRAS_FORCE" target="_top"><code>SYNC_EXTRAS_FORCE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.content.Context.html b/docs/html/sdk/api_diff/5/changes/android.content.Context.html
new file mode 100644
index 0000000..fdba863
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.content.Context.html
@@ -0,0 +1,222 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.Context
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.content.<A HREF="../../../../reference/android/content/Context.html" target="_top"><font size="+2"><code>Context</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Context.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/Context.html#sendStickyOrderedBroadcast(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" target="_top"><code>sendStickyOrderedBroadcast</code></A>(<code>Intent,</nobr> BroadcastReceiver<nobr>,</nobr> Handler<nobr>,</nobr> int<nobr>,</nobr> String<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Context.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/Context.html#startIntentSender(android.content.IntentSender, android.content.Intent, int, int, int)" target="_top"><code>startIntentSender</code></A>(<code>IntentSender,</nobr> Intent<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Context.clearWallpaper_changed()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/Context.html#clearWallpaper()" target="_top"><code>clearWallpaper</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Context.getWallpaper_changed()"></A>
+ <nobr><code>Drawable</code> <A HREF="../../../../reference/android/content/Context.html#getWallpaper()" target="_top"><code>getWallpaper</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Context.getWallpaperDesiredMinimumHeight_changed()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/content/Context.html#getWallpaperDesiredMinimumHeight()" target="_top"><code>getWallpaperDesiredMinimumHeight</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Context.getWallpaperDesiredMinimumWidth_changed()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/content/Context.html#getWallpaperDesiredMinimumWidth()" target="_top"><code>getWallpaperDesiredMinimumWidth</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Context.peekWallpaper_changed()"></A>
+ <nobr><code>Drawable</code> <A HREF="../../../../reference/android/content/Context.html#peekWallpaper()" target="_top"><code>peekWallpaper</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Context.setWallpaper_changed(android.graphics.Bitmap)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/Context.html#setWallpaper(android.graphics.Bitmap)" target="_top"><code>setWallpaper</code></A>(<code>Bitmap</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Context.setWallpaper_changed(java.io.InputStream)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/Context.html#setWallpaper(java.io.InputStream)" target="_top"><code>setWallpaper</code></A>(<code>InputStream</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Context.ACCOUNT_SERVICE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/Context.html#ACCOUNT_SERVICE" target="_top"><code>ACCOUNT_SERVICE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.content.ContextWrapper.html b/docs/html/sdk/api_diff/5/changes/android.content.ContextWrapper.html
new file mode 100644
index 0000000..a9e5f39
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.content.ContextWrapper.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.ContextWrapper
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.content.<A HREF="../../../../reference/android/content/ContextWrapper.html" target="_top"><font size="+2"><code>ContextWrapper</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContextWrapper.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/ContextWrapper.html#sendStickyOrderedBroadcast(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" target="_top"><code>sendStickyOrderedBroadcast</code></A>(<code>Intent,</nobr> BroadcastReceiver<nobr>,</nobr> Handler<nobr>,</nobr> int<nobr>,</nobr> String<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.ContextWrapper.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/ContextWrapper.html#startIntentSender(android.content.IntentSender, android.content.Intent, int, int, int)" target="_top"><code>startIntentSender</code></A>(<code>IntentSender,</nobr> Intent<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.content.Intent.html b/docs/html/sdk/api_diff/5/changes/android.content.Intent.html
new file mode 100644
index 0000000..858e99b
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.content.Intent.html
@@ -0,0 +1,199 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.Intent
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.content.<A HREF="../../../../reference/android/content/Intent.html" target="_top"><font size="+2"><code>Intent</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Intent.ACTION_DOCK_EVENT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/Intent.html#ACTION_DOCK_EVENT" target="_top"><code>ACTION_DOCK_EVENT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Intent.CATEGORY_CAR_DOCK"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/Intent.html#CATEGORY_CAR_DOCK" target="_top"><code>CATEGORY_CAR_DOCK</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Intent.CATEGORY_DESK_DOCK"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/Intent.html#CATEGORY_DESK_DOCK" target="_top"><code>CATEGORY_DESK_DOCK</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Intent.EXTRA_CHANGED_COMPONENT_NAME"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/Intent.html#EXTRA_CHANGED_COMPONENT_NAME" target="_top"><code>EXTRA_CHANGED_COMPONENT_NAME</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Intent.EXTRA_DOCK_STATE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/Intent.html#EXTRA_DOCK_STATE" target="_top"><code>EXTRA_DOCK_STATE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Intent.EXTRA_DOCK_STATE_CAR"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/content/Intent.html#EXTRA_DOCK_STATE_CAR" target="_top"><code>EXTRA_DOCK_STATE_CAR</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Intent.EXTRA_DOCK_STATE_DESK"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/content/Intent.html#EXTRA_DOCK_STATE_DESK" target="_top"><code>EXTRA_DOCK_STATE_DESK</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Intent.EXTRA_DOCK_STATE_UNDOCKED"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/content/Intent.html#EXTRA_DOCK_STATE_UNDOCKED" target="_top"><code>EXTRA_DOCK_STATE_UNDOCKED</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Intent.EXTRA_INITIAL_INTENTS"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/Intent.html#EXTRA_INITIAL_INTENTS" target="_top"><code>EXTRA_INITIAL_INTENTS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Intent.EXTRA_REMOTE_INTENT_TOKEN"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/Intent.html#EXTRA_REMOTE_INTENT_TOKEN" target="_top"><code>EXTRA_REMOTE_INTENT_TOKEN</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Intent.FLAG_ACTIVITY_NO_ANIMATION"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/content/Intent.html#FLAG_ACTIVITY_NO_ANIMATION" target="_top"><code>FLAG_ACTIVITY_NO_ANIMATION</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.Intent.METADATA_DOCK_HOME"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/Intent.html#METADATA_DOCK_HOME" target="_top"><code>METADATA_DOCK_HOME</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.content.pm.ActivityInfo.html b/docs/html/sdk/api_diff/5/changes/android.content.pm.ActivityInfo.html
new file mode 100644
index 0000000..34897c5
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.content.pm.ActivityInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.pm.ActivityInfo
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.content.pm.<A HREF="../../../../reference/android/content/pm/ActivityInfo.html" target="_top"><font size="+2"><code>ActivityInfo</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.pm.ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/content/pm/ActivityInfo.html#FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS" target="_top"><code>FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.content.pm.PackageInfo.html b/docs/html/sdk/api_diff/5/changes/android.content.pm.PackageInfo.html
new file mode 100644
index 0000000..ecaf34f
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.content.pm.PackageInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.pm.PackageInfo
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.content.pm.<A HREF="../../../../reference/android/content/pm/PackageInfo.html" target="_top"><font size="+2"><code>PackageInfo</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.pm.PackageInfo.reqFeatures"></A>
+ <nobr><code>FeatureInfo[]</code> <A HREF="../../../../reference/android/content/pm/PackageInfo.html#reqFeatures" target="_top"><code>reqFeatures</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.content.pm.PackageManager.html b/docs/html/sdk/api_diff/5/changes/android.content.pm.PackageManager.html
new file mode 100644
index 0000000..61bf5fb
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.content.pm.PackageManager.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.pm.PackageManager
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.content.pm.<A HREF="../../../../reference/android/content/pm/PackageManager.html" target="_top"><font size="+2"><code>PackageManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.pm.PackageManager.checkSignatures_added(int, int)"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/content/pm/PackageManager.html#checkSignatures(int, int)" target="_top"><code>checkSignatures</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.pm.PackageManager.getInstallerPackageName_added(java.lang.String)"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/pm/PackageManager.html#getInstallerPackageName(java.lang.String)" target="_top"><code>getInstallerPackageName</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.pm.PackageManager.getSystemAvailableFeatures_added()"></A>
+ <nobr><code>FeatureInfo[]</code> <A HREF="../../../../reference/android/content/pm/PackageManager.html#getSystemAvailableFeatures()" target="_top"><code>getSystemAvailableFeatures</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.pm.PackageManager.hasSystemFeature_added(java.lang.String)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/content/pm/PackageManager.html#hasSystemFeature(java.lang.String)" target="_top"><code>hasSystemFeature</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.content.pm.ProviderInfo.html b/docs/html/sdk/api_diff/5/changes/android.content.pm.ProviderInfo.html
new file mode 100644
index 0000000..f1322d4
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.content.pm.ProviderInfo.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.pm.ProviderInfo
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.content.pm.<A HREF="../../../../reference/android/content/pm/ProviderInfo.html" target="_top"><font size="+2"><code>ProviderInfo</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.pm.ProviderInfo.isSyncable"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/content/pm/ProviderInfo.html#isSyncable" target="_top"><code>isSyncable</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.content.pm.ResolveInfo.html b/docs/html/sdk/api_diff/5/changes/android.content.pm.ResolveInfo.html
new file mode 100644
index 0000000..0e708d9
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.content.pm.ResolveInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.pm.ResolveInfo
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.content.pm.<A HREF="../../../../reference/android/content/pm/ResolveInfo.html" target="_top"><font size="+2"><code>ResolveInfo</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.pm.ResolveInfo.resolvePackageName"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/content/pm/ResolveInfo.html#resolvePackageName" target="_top"><code>resolvePackageName</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.content.pm.ServiceInfo.html b/docs/html/sdk/api_diff/5/changes/android.content.pm.ServiceInfo.html
new file mode 100644
index 0000000..855b66a
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.content.pm.ServiceInfo.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.pm.ServiceInfo
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.content.pm.<A HREF="../../../../reference/android/content/pm/ServiceInfo.html" target="_top"><font size="+2"><code>ServiceInfo</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.pm.ServiceInfo.dump_added(android.util.Printer, java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/content/pm/ServiceInfo.html#dump(android.util.Printer, java.lang.String)" target="_top"><code>dump</code></A>(<code>Printer,</nobr> String<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.content.res.Configuration.html b/docs/html/sdk/api_diff/5/changes/android.content.res.Configuration.html
new file mode 100644
index 0000000..a3003d9
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.content.res.Configuration.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.res.Configuration
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.content.res.<A HREF="../../../../reference/android/content/res/Configuration.html" target="_top"><font size="+2"><code>Configuration</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.res.Configuration.NAVIGATIONHIDDEN_NO"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/content/res/Configuration.html#NAVIGATIONHIDDEN_NO" target="_top"><code>NAVIGATIONHIDDEN_NO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.res.Configuration.NAVIGATIONHIDDEN_UNDEFINED"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/content/res/Configuration.html#NAVIGATIONHIDDEN_UNDEFINED" target="_top"><code>NAVIGATIONHIDDEN_UNDEFINED</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.res.Configuration.NAVIGATIONHIDDEN_YES"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/content/res/Configuration.html#NAVIGATIONHIDDEN_YES" target="_top"><code>NAVIGATIONHIDDEN_YES</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.res.Configuration.navigationHidden"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/content/res/Configuration.html#navigationHidden" target="_top"><code>navigationHidden</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.database.AbstractWindowedCursor.html b/docs/html/sdk/api_diff/5/changes/android.database.AbstractWindowedCursor.html
new file mode 100644
index 0000000..7d3d5ae
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.database.AbstractWindowedCursor.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.database.AbstractWindowedCursor
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.database.<A HREF="../../../../reference/android/database/AbstractWindowedCursor.html" target="_top"><font size="+2"><code>AbstractWindowedCursor</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.database.AbstractWindowedCursor.isFloat_added(int)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/database/AbstractWindowedCursor.html#isFloat(int)" target="_top"><code>isFloat</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.database.AbstractWindowedCursor.isLong_added(int)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/database/AbstractWindowedCursor.html#isLong(int)" target="_top"><code>isLong</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.database.AbstractWindowedCursor.isString_added(int)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/database/AbstractWindowedCursor.html#isString(int)" target="_top"><code>isString</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.database.CursorWindow.html b/docs/html/sdk/api_diff/5/changes/android.database.CursorWindow.html
new file mode 100644
index 0000000..9d733ca
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.database.CursorWindow.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.database.CursorWindow
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.database.<A HREF="../../../../reference/android/database/CursorWindow.html" target="_top"><font size="+2"><code>CursorWindow</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.database.CursorWindow.isFloat_added(int, int)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/database/CursorWindow.html#isFloat(int, int)" target="_top"><code>isFloat</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.database.CursorWindow.isLong_added(int, int)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/database/CursorWindow.html#isLong(int, int)" target="_top"><code>isLong</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.database.CursorWindow.isString_added(int, int)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/database/CursorWindow.html#isString(int, int)" target="_top"><code>isString</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.database.DatabaseUtils.html b/docs/html/sdk/api_diff/5/changes/android.database.DatabaseUtils.html
new file mode 100644
index 0000000..84143fd
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.database.DatabaseUtils.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.database.DatabaseUtils
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.database.<A HREF="../../../../reference/android/database/DatabaseUtils.html" target="_top"><font size="+2"><code>DatabaseUtils</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.database.DatabaseUtils.readExceptionWithOperationApplicationExceptionFromParcel_added(android.os.Parcel)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/database/DatabaseUtils.html#readExceptionWithOperationApplicationExceptionFromParcel(android.os.Parcel)" target="_top"><code>readExceptionWithOperationApplicationExceptionFromParcel</code></A>(<code>Parcel</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.database.sqlite.SQLiteDatabase.html b/docs/html/sdk/api_diff/5/changes/android.database.sqlite.SQLiteDatabase.html
new file mode 100644
index 0000000..98f3ddd
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.database.sqlite.SQLiteDatabase.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.database.sqlite.SQLiteDatabase
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.database.sqlite.<A HREF="../../../../reference/android/database/sqlite/SQLiteDatabase.html" target="_top"><font size="+2"><code>SQLiteDatabase</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.database.sqlite.SQLiteDatabase.beginTransactionWithListener_added(android.database.sqlite.SQLiteTransactionListener)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/database/sqlite/SQLiteDatabase.html#beginTransactionWithListener(android.database.sqlite.SQLiteTransactionListener)" target="_top"><code>beginTransactionWithListener</code></A>(<code>SQLiteTransactionListener</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.database.sqlite.SQLiteDatabase.yieldIfContendedSafely_added(long)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/database/sqlite/SQLiteDatabase.html#yieldIfContendedSafely(long)" target="_top"><code>yieldIfContendedSafely</code></A>(<code>long</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.graphics.PixelFormat.html b/docs/html/sdk/api_diff/5/changes/android.graphics.PixelFormat.html
new file mode 100644
index 0000000..4d115b4
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.graphics.PixelFormat.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.graphics.PixelFormat
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.graphics.<A HREF="../../../../reference/android/graphics/PixelFormat.html" target="_top"><font size="+2"><code>PixelFormat</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.graphics.PixelFormat.YCbCr_422_I"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/graphics/PixelFormat.html#YCbCr_422_I" target="_top"><code>YCbCr_422_I</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.graphics.drawable.BitmapDrawable.html b/docs/html/sdk/api_diff/5/changes/android.graphics.drawable.BitmapDrawable.html
new file mode 100644
index 0000000..8d2bcf1
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.graphics.drawable.BitmapDrawable.html
@@ -0,0 +1,186 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.graphics.drawable.BitmapDrawable
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.graphics.drawable.<A HREF="../../../../reference/android/graphics/drawable/BitmapDrawable.html" target="_top"><font size="+2"><code>BitmapDrawable</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Removed"></a>
+<TABLE summary="Removed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Removed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.graphics.drawable.BitmapDrawable.ctor_removed()"></A>
+ <nobr>BitmapDrawable()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.graphics.drawable.BitmapDrawable.ctor_removed(android.graphics.Bitmap)"></A>
+ <nobr>BitmapDrawable(<code>Bitmap</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources)"></A>
+ <nobr><A HREF="../../../../reference/android/graphics/drawable/BitmapDrawable.html#BitmapDrawable(android.content.res.Resources)" target="_top"><code>BitmapDrawable</code></A>(<code>Resources</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources, java.lang.String)"></A>
+ <nobr><A HREF="../../../../reference/android/graphics/drawable/BitmapDrawable.html#BitmapDrawable(android.content.res.Resources, java.lang.String)" target="_top"><code>BitmapDrawable</code></A>(<code>Resources,</nobr> String<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources, java.io.InputStream)"></A>
+ <nobr><A HREF="../../../../reference/android/graphics/drawable/BitmapDrawable.html#BitmapDrawable(android.content.res.Resources, java.io.InputStream)" target="_top"><code>BitmapDrawable</code></A>(<code>Resources,</nobr> InputStream<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.graphics.drawable.BitmapDrawable.ctor_changed(java.io.InputStream)"></A>
+ <nobr><A HREF="../../../../reference/android/graphics/drawable/BitmapDrawable.html#BitmapDrawable(java.io.InputStream)" target="_top"><code>BitmapDrawable</code></A>(<code>InputStream</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.graphics.drawable.BitmapDrawable.ctor_changed(java.lang.String)"></A>
+ <nobr><A HREF="../../../../reference/android/graphics/drawable/BitmapDrawable.html#BitmapDrawable(java.lang.String)" target="_top"><code>BitmapDrawable</code></A>(<code>String</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.graphics.drawable.Drawable.ConstantState.html b/docs/html/sdk/api_diff/5/changes/android.graphics.drawable.Drawable.ConstantState.html
new file mode 100644
index 0000000..74e174e
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.graphics.drawable.Drawable.ConstantState.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.graphics.drawable.Drawable.ConstantState
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.graphics.drawable.<A HREF="../../../../reference/android/graphics/drawable/Drawable.ConstantState.html" target="_top"><font size="+2"><code>Drawable.ConstantState</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.graphics.drawable.Drawable.ConstantState.newDrawable_added(android.content.res.Resources)"></A>
+ <nobr><code>Drawable</code> <A HREF="../../../../reference/android/graphics/drawable/Drawable.ConstantState.html#newDrawable(android.content.res.Resources)" target="_top"><code>newDrawable</code></A>(<code>Resources</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.graphics.drawable.Drawable.html b/docs/html/sdk/api_diff/5/changes/android.graphics.drawable.Drawable.html
new file mode 100644
index 0000000..c7c7c16
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.graphics.drawable.Drawable.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.graphics.drawable.Drawable
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.graphics.drawable.<A HREF="../../../../reference/android/graphics/drawable/Drawable.html" target="_top"><font size="+2"><code>Drawable</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.graphics.drawable.Drawable.createFromResourceStream_added(android.content.res.Resources, android.util.TypedValue, java.io.InputStream, java.lang.String, android.graphics.BitmapFactory.Options)"></A>
+ <nobr><code>Drawable</code> <A HREF="../../../../reference/android/graphics/drawable/Drawable.html#createFromResourceStream(android.content.res.Resources, android.util.TypedValue, java.io.InputStream, java.lang.String, android.graphics.BitmapFactory.Options)" target="_top"><code>createFromResourceStream</code></A>(<code>Resources,</nobr> TypedValue<nobr>,</nobr> InputStream<nobr>,</nobr> String<nobr>,</nobr> Options<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.graphics.drawable.NinePatchDrawable.html b/docs/html/sdk/api_diff/5/changes/android.graphics.drawable.NinePatchDrawable.html
new file mode 100644
index 0000000..b305656
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.graphics.drawable.NinePatchDrawable.html
@@ -0,0 +1,124 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.graphics.drawable.NinePatchDrawable
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.graphics.drawable.<A HREF="../../../../reference/android/graphics/drawable/NinePatchDrawable.html" target="_top"><font size="+2"><code>NinePatchDrawable</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.graphics.drawable.NinePatchDrawable.ctor_changed(android.graphics.Bitmap, byte[], android.graphics.Rect, java.lang.String)"></A>
+ <nobr><A HREF="../../../../reference/android/graphics/drawable/NinePatchDrawable.html#NinePatchDrawable(android.graphics.Bitmap, byte[], android.graphics.Rect, java.lang.String)" target="_top"><code>NinePatchDrawable</code></A>(<code>Bitmap,</nobr> byte[]<nobr>,</nobr> Rect<nobr>,</nobr> String<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.hardware.Camera.Parameters.html b/docs/html/sdk/api_diff/5/changes/android.hardware.Camera.Parameters.html
new file mode 100644
index 0000000..b6a5506
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.hardware.Camera.Parameters.html
@@ -0,0 +1,683 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.hardware.Camera.Parameters
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.hardware.<A HREF="../../../../reference/android/hardware/Camera.Parameters.html" target="_top"><font size="+2"><code>Camera.Parameters</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getAntibanding_added()"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getAntibanding()" target="_top"><code>getAntibanding</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getColorEffect_added()"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getColorEffect()" target="_top"><code>getColorEffect</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getFlashMode_added()"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getFlashMode()" target="_top"><code>getFlashMode</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getFocusMode_added()"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getFocusMode()" target="_top"><code>getFocusMode</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getJpegQuality_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getJpegQuality()" target="_top"><code>getJpegQuality</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getJpegThumbnailQuality_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getJpegThumbnailQuality()" target="_top"><code>getJpegThumbnailQuality</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getJpegThumbnailSize_added()"></A>
+ <nobr><code>Size</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getJpegThumbnailSize()" target="_top"><code>getJpegThumbnailSize</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getSceneMode_added()"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getSceneMode()" target="_top"><code>getSceneMode</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getSupportedAntibanding_added()"></A>
+ <nobr><code>List<String></code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getSupportedAntibanding()" target="_top"><code>getSupportedAntibanding</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getSupportedColorEffects_added()"></A>
+ <nobr><code>List<String></code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getSupportedColorEffects()" target="_top"><code>getSupportedColorEffects</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getSupportedFlashModes_added()"></A>
+ <nobr><code>List<String></code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getSupportedFlashModes()" target="_top"><code>getSupportedFlashModes</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getSupportedFocusModes_added()"></A>
+ <nobr><code>List<String></code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getSupportedFocusModes()" target="_top"><code>getSupportedFocusModes</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getSupportedPictureFormats_added()"></A>
+ <nobr><code>List<Integer></code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getSupportedPictureFormats()" target="_top"><code>getSupportedPictureFormats</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getSupportedPictureSizes_added()"></A>
+ <nobr><code>List<Size></code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getSupportedPictureSizes()" target="_top"><code>getSupportedPictureSizes</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getSupportedPreviewFormats_added()"></A>
+ <nobr><code>List<Integer></code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getSupportedPreviewFormats()" target="_top"><code>getSupportedPreviewFormats</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getSupportedPreviewFrameRates_added()"></A>
+ <nobr><code>List<Integer></code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getSupportedPreviewFrameRates()" target="_top"><code>getSupportedPreviewFrameRates</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getSupportedPreviewSizes_added()"></A>
+ <nobr><code>List<Size></code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getSupportedPreviewSizes()" target="_top"><code>getSupportedPreviewSizes</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getSupportedSceneModes_added()"></A>
+ <nobr><code>List<String></code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getSupportedSceneModes()" target="_top"><code>getSupportedSceneModes</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getSupportedWhiteBalance_added()"></A>
+ <nobr><code>List<String></code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getSupportedWhiteBalance()" target="_top"><code>getSupportedWhiteBalance</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.getWhiteBalance_added()"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#getWhiteBalance()" target="_top"><code>getWhiteBalance</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.removeGpsData_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#removeGpsData()" target="_top"><code>removeGpsData</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setAntibanding_added(java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setAntibanding(java.lang.String)" target="_top"><code>setAntibanding</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setColorEffect_added(java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setColorEffect(java.lang.String)" target="_top"><code>setColorEffect</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setFlashMode_added(java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setFlashMode(java.lang.String)" target="_top"><code>setFlashMode</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setFocusMode_added(java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setFocusMode(java.lang.String)" target="_top"><code>setFocusMode</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setGpsAltitude_added(double)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setGpsAltitude(double)" target="_top"><code>setGpsAltitude</code></A>(<code>double</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setGpsLatitude_added(double)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setGpsLatitude(double)" target="_top"><code>setGpsLatitude</code></A>(<code>double</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setGpsLongitude_added(double)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setGpsLongitude(double)" target="_top"><code>setGpsLongitude</code></A>(<code>double</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setGpsTimestamp_added(long)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setGpsTimestamp(long)" target="_top"><code>setGpsTimestamp</code></A>(<code>long</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setJpegQuality_added(int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setJpegQuality(int)" target="_top"><code>setJpegQuality</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setJpegThumbnailQuality_added(int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setJpegThumbnailQuality(int)" target="_top"><code>setJpegThumbnailQuality</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setJpegThumbnailSize_added(int, int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setJpegThumbnailSize(int, int)" target="_top"><code>setJpegThumbnailSize</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setRotation_added(int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setRotation(int)" target="_top"><code>setRotation</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setSceneMode_added(java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setSceneMode(java.lang.String)" target="_top"><code>setSceneMode</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.setWhiteBalance_added(java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#setWhiteBalance(java.lang.String)" target="_top"><code>setWhiteBalance</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.ANTIBANDING_50HZ"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#ANTIBANDING_50HZ" target="_top"><code>ANTIBANDING_50HZ</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.ANTIBANDING_60HZ"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#ANTIBANDING_60HZ" target="_top"><code>ANTIBANDING_60HZ</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.ANTIBANDING_AUTO"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#ANTIBANDING_AUTO" target="_top"><code>ANTIBANDING_AUTO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.ANTIBANDING_OFF"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#ANTIBANDING_OFF" target="_top"><code>ANTIBANDING_OFF</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.EFFECT_AQUA"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#EFFECT_AQUA" target="_top"><code>EFFECT_AQUA</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.EFFECT_BLACKBOARD"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#EFFECT_BLACKBOARD" target="_top"><code>EFFECT_BLACKBOARD</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.EFFECT_MONO"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#EFFECT_MONO" target="_top"><code>EFFECT_MONO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.EFFECT_NEGATIVE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#EFFECT_NEGATIVE" target="_top"><code>EFFECT_NEGATIVE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.EFFECT_NONE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#EFFECT_NONE" target="_top"><code>EFFECT_NONE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.EFFECT_POSTERIZE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#EFFECT_POSTERIZE" target="_top"><code>EFFECT_POSTERIZE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.EFFECT_SEPIA"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#EFFECT_SEPIA" target="_top"><code>EFFECT_SEPIA</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.EFFECT_SOLARIZE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#EFFECT_SOLARIZE" target="_top"><code>EFFECT_SOLARIZE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.EFFECT_WHITEBOARD"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#EFFECT_WHITEBOARD" target="_top"><code>EFFECT_WHITEBOARD</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.FLASH_MODE_AUTO"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#FLASH_MODE_AUTO" target="_top"><code>FLASH_MODE_AUTO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.FLASH_MODE_OFF"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#FLASH_MODE_OFF" target="_top"><code>FLASH_MODE_OFF</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.FLASH_MODE_ON"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#FLASH_MODE_ON" target="_top"><code>FLASH_MODE_ON</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.FLASH_MODE_RED_EYE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#FLASH_MODE_RED_EYE" target="_top"><code>FLASH_MODE_RED_EYE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.FLASH_MODE_TORCH"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#FLASH_MODE_TORCH" target="_top"><code>FLASH_MODE_TORCH</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.FOCUS_MODE_AUTO"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#FOCUS_MODE_AUTO" target="_top"><code>FOCUS_MODE_AUTO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.FOCUS_MODE_FIXED"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#FOCUS_MODE_FIXED" target="_top"><code>FOCUS_MODE_FIXED</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.FOCUS_MODE_INFINITY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#FOCUS_MODE_INFINITY" target="_top"><code>FOCUS_MODE_INFINITY</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.FOCUS_MODE_MACRO"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#FOCUS_MODE_MACRO" target="_top"><code>FOCUS_MODE_MACRO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_ACTION"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_ACTION" target="_top"><code>SCENE_MODE_ACTION</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_AUTO"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_AUTO" target="_top"><code>SCENE_MODE_AUTO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_BEACH"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_BEACH" target="_top"><code>SCENE_MODE_BEACH</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_CANDLELIGHT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_CANDLELIGHT" target="_top"><code>SCENE_MODE_CANDLELIGHT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_FIREWORKS"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_FIREWORKS" target="_top"><code>SCENE_MODE_FIREWORKS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_LANDSCAPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_LANDSCAPE" target="_top"><code>SCENE_MODE_LANDSCAPE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_NIGHT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_NIGHT" target="_top"><code>SCENE_MODE_NIGHT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_NIGHT_PORTRAIT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_NIGHT_PORTRAIT" target="_top"><code>SCENE_MODE_NIGHT_PORTRAIT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_PARTY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_PARTY" target="_top"><code>SCENE_MODE_PARTY</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_PORTRAIT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_PORTRAIT" target="_top"><code>SCENE_MODE_PORTRAIT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_SNOW"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_SNOW" target="_top"><code>SCENE_MODE_SNOW</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_SPORTS"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_SPORTS" target="_top"><code>SCENE_MODE_SPORTS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_STEADYPHOTO"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_STEADYPHOTO" target="_top"><code>SCENE_MODE_STEADYPHOTO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_SUNSET"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_SUNSET" target="_top"><code>SCENE_MODE_SUNSET</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.SCENE_MODE_THEATRE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#SCENE_MODE_THEATRE" target="_top"><code>SCENE_MODE_THEATRE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.WHITE_BALANCE_AUTO"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#WHITE_BALANCE_AUTO" target="_top"><code>WHITE_BALANCE_AUTO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.WHITE_BALANCE_CLOUDY_DAYLIGHT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#WHITE_BALANCE_CLOUDY_DAYLIGHT" target="_top"><code>WHITE_BALANCE_CLOUDY_DAYLIGHT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.WHITE_BALANCE_DAYLIGHT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#WHITE_BALANCE_DAYLIGHT" target="_top"><code>WHITE_BALANCE_DAYLIGHT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.WHITE_BALANCE_FLUORESCENT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#WHITE_BALANCE_FLUORESCENT" target="_top"><code>WHITE_BALANCE_FLUORESCENT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.WHITE_BALANCE_INCANDESCENT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#WHITE_BALANCE_INCANDESCENT" target="_top"><code>WHITE_BALANCE_INCANDESCENT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.WHITE_BALANCE_SHADE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#WHITE_BALANCE_SHADE" target="_top"><code>WHITE_BALANCE_SHADE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.WHITE_BALANCE_TWILIGHT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#WHITE_BALANCE_TWILIGHT" target="_top"><code>WHITE_BALANCE_TWILIGHT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.Parameters.WHITE_BALANCE_WARM_FLUORESCENT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/hardware/Camera.Parameters.html#WHITE_BALANCE_WARM_FLUORESCENT" target="_top"><code>WHITE_BALANCE_WARM_FLUORESCENT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.hardware.Camera.html b/docs/html/sdk/api_diff/5/changes/android.hardware.Camera.html
new file mode 100644
index 0000000..51bcdd9
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.hardware.Camera.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.hardware.Camera
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.hardware.<A HREF="../../../../reference/android/hardware/Camera.html" target="_top"><font size="+2"><code>Camera</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.cancelAutoFocus_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.html#cancelAutoFocus()" target="_top"><code>cancelAutoFocus</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.lock_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.html#lock()" target="_top"><code>lock</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.takePicture_added(android.hardware.Camera.ShutterCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.html#takePicture(android.hardware.Camera.ShutterCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback)" target="_top"><code>takePicture</code></A>(<code>ShutterCallback,</nobr> PictureCallback<nobr>,</nobr> PictureCallback<nobr>,</nobr> PictureCallback<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware.Camera.unlock_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/hardware/Camera.html#unlock()" target="_top"><code>unlock</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.inputmethodservice.AbstractInputMethodService.html b/docs/html/sdk/api_diff/5/changes/android.inputmethodservice.AbstractInputMethodService.html
new file mode 100644
index 0000000..407b578
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.inputmethodservice.AbstractInputMethodService.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.inputmethodservice.AbstractInputMethodService
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.inputmethodservice.<A HREF="../../../../reference/android/inputmethodservice/AbstractInputMethodService.html" target="_top"><font size="+2"><code>AbstractInputMethodService</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.inputmethodservice.AbstractInputMethodService.getKeyDispatcherState_added()"></A>
+ <nobr><code>DispatcherState</code> <A HREF="../../../../reference/android/inputmethodservice/AbstractInputMethodService.html#getKeyDispatcherState()" target="_top"><code>getKeyDispatcherState</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.inputmethodservice.InputMethodService.html b/docs/html/sdk/api_diff/5/changes/android.inputmethodservice.InputMethodService.html
new file mode 100644
index 0000000..1067b72
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.inputmethodservice.InputMethodService.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.inputmethodservice.InputMethodService
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.inputmethodservice.<A HREF="../../../../reference/android/inputmethodservice/InputMethodService.html" target="_top"><font size="+2"><code>InputMethodService</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.inputmethodservice.InputMethodService.onKeyLongPress_added(int, android.view.KeyEvent)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/inputmethodservice/InputMethodService.html#onKeyLongPress(int, android.view.KeyEvent)" target="_top"><code>onKeyLongPress</code></A>(<code>int,</nobr> KeyEvent<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.location.LocationManager.html b/docs/html/sdk/api_diff/5/changes/android.location.LocationManager.html
new file mode 100644
index 0000000..5c46abee
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.location.LocationManager.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.location.LocationManager
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.location.<A HREF="../../../../reference/android/location/LocationManager.html" target="_top"><font size="+2"><code>LocationManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.location.LocationManager.addNmeaListener_added(android.location.GpsStatus.NmeaListener)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/location/LocationManager.html#addNmeaListener(android.location.GpsStatus.NmeaListener)" target="_top"><code>addNmeaListener</code></A>(<code>NmeaListener</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.location.LocationManager.removeNmeaListener_added(android.location.GpsStatus.NmeaListener)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/location/LocationManager.html#removeNmeaListener(android.location.GpsStatus.NmeaListener)" target="_top"><code>removeNmeaListener</code></A>(<code>NmeaListener</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.media.AudioFormat.html b/docs/html/sdk/api_diff/5/changes/android.media.AudioFormat.html
new file mode 100644
index 0000000..d7d0998
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.media.AudioFormat.html
@@ -0,0 +1,397 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.media.AudioFormat
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.media.<A HREF="../../../../reference/android/media/AudioFormat.html" target="_top"><font size="+2"><code>AudioFormat</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_INVALID"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_INVALID" target="_top"><code>CHANNEL_INVALID</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_BACK"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_BACK" target="_top"><code>CHANNEL_IN_BACK</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_BACK_PROCESSED"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_BACK_PROCESSED" target="_top"><code>CHANNEL_IN_BACK_PROCESSED</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_DEFAULT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_DEFAULT" target="_top"><code>CHANNEL_IN_DEFAULT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_FRONT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_FRONT" target="_top"><code>CHANNEL_IN_FRONT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_FRONT_PROCESSED"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_FRONT_PROCESSED" target="_top"><code>CHANNEL_IN_FRONT_PROCESSED</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_LEFT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_LEFT" target="_top"><code>CHANNEL_IN_LEFT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_LEFT_PROCESSED"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_LEFT_PROCESSED" target="_top"><code>CHANNEL_IN_LEFT_PROCESSED</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_MONO"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_MONO" target="_top"><code>CHANNEL_IN_MONO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_PRESSURE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_PRESSURE" target="_top"><code>CHANNEL_IN_PRESSURE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_RIGHT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_RIGHT" target="_top"><code>CHANNEL_IN_RIGHT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_RIGHT_PROCESSED"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_RIGHT_PROCESSED" target="_top"><code>CHANNEL_IN_RIGHT_PROCESSED</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_STEREO"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_STEREO" target="_top"><code>CHANNEL_IN_STEREO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_VOICE_DNLINK"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_VOICE_DNLINK" target="_top"><code>CHANNEL_IN_VOICE_DNLINK</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_VOICE_UPLINK"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_VOICE_UPLINK" target="_top"><code>CHANNEL_IN_VOICE_UPLINK</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_X_AXIS"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_X_AXIS" target="_top"><code>CHANNEL_IN_X_AXIS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_Y_AXIS"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_Y_AXIS" target="_top"><code>CHANNEL_IN_Y_AXIS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_IN_Z_AXIS"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_IN_Z_AXIS" target="_top"><code>CHANNEL_IN_Z_AXIS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_5POINT1"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_5POINT1" target="_top"><code>CHANNEL_OUT_5POINT1</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_7POINT1"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_7POINT1" target="_top"><code>CHANNEL_OUT_7POINT1</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_BACK_CENTER"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_BACK_CENTER" target="_top"><code>CHANNEL_OUT_BACK_CENTER</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_BACK_LEFT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_BACK_LEFT" target="_top"><code>CHANNEL_OUT_BACK_LEFT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_BACK_RIGHT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_BACK_RIGHT" target="_top"><code>CHANNEL_OUT_BACK_RIGHT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_DEFAULT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_DEFAULT" target="_top"><code>CHANNEL_OUT_DEFAULT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_FRONT_CENTER"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_FRONT_CENTER" target="_top"><code>CHANNEL_OUT_FRONT_CENTER</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_FRONT_LEFT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_FRONT_LEFT" target="_top"><code>CHANNEL_OUT_FRONT_LEFT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_FRONT_LEFT_OF_CENTER"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_FRONT_LEFT_OF_CENTER" target="_top"><code>CHANNEL_OUT_FRONT_LEFT_OF_CENTER</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_FRONT_RIGHT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_FRONT_RIGHT" target="_top"><code>CHANNEL_OUT_FRONT_RIGHT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_FRONT_RIGHT_OF_CENTER"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_FRONT_RIGHT_OF_CENTER" target="_top"><code>CHANNEL_OUT_FRONT_RIGHT_OF_CENTER</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_LOW_FREQUENCY"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_LOW_FREQUENCY" target="_top"><code>CHANNEL_OUT_LOW_FREQUENCY</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_MONO"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_MONO" target="_top"><code>CHANNEL_OUT_MONO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_QUAD"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_QUAD" target="_top"><code>CHANNEL_OUT_QUAD</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_STEREO"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_STEREO" target="_top"><code>CHANNEL_OUT_STEREO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_OUT_SURROUND"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_OUT_SURROUND" target="_top"><code>CHANNEL_OUT_SURROUND</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_CONFIGURATION_DEFAULT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_CONFIGURATION_DEFAULT" target="_top"><code>CHANNEL_CONFIGURATION_DEFAULT</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_CONFIGURATION_INVALID"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_CONFIGURATION_INVALID" target="_top"><code>CHANNEL_CONFIGURATION_INVALID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_CONFIGURATION_MONO"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_CONFIGURATION_MONO" target="_top"><code>CHANNEL_CONFIGURATION_MONO</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioFormat.CHANNEL_CONFIGURATION_STEREO"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioFormat.html#CHANNEL_CONFIGURATION_STEREO" target="_top"><code>CHANNEL_CONFIGURATION_STEREO</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.media.AudioManager.html b/docs/html/sdk/api_diff/5/changes/android.media.AudioManager.html
new file mode 100644
index 0000000..1e435cb
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.media.AudioManager.html
@@ -0,0 +1,238 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.media.AudioManager
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.media.<A HREF="../../../../reference/android/media/AudioManager.html" target="_top"><font size="+2"><code>AudioManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioManager.getParameters_added(java.lang.String)"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/media/AudioManager.html#getParameters(java.lang.String)" target="_top"><code>getParameters</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioManager.isWiredHeadsetOn_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/media/AudioManager.html#isWiredHeadsetOn()" target="_top"><code>isWiredHeadsetOn</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioManager.setParameters_added(java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/media/AudioManager.html#setParameters(java.lang.String)" target="_top"><code>setParameters</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioManager.setWiredHeadsetOn_added(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/media/AudioManager.html#setWiredHeadsetOn(boolean)" target="_top"><code>setWiredHeadsetOn</code></A>(<code>boolean</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioManager.setBluetoothA2dpOn_changed(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/media/AudioManager.html#setBluetoothA2dpOn(boolean)" target="_top"><code>setBluetoothA2dpOn</code></A>(<code>boolean</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioManager.STREAM_DTMF"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioManager.html#STREAM_DTMF" target="_top"><code>STREAM_DTMF</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioManager.ROUTE_ALL"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioManager.html#ROUTE_ALL" target="_top"><code>ROUTE_ALL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioManager.ROUTE_BLUETOOTH_A2DP"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioManager.html#ROUTE_BLUETOOTH_A2DP" target="_top"><code>ROUTE_BLUETOOTH_A2DP</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioManager.ROUTE_BLUETOOTH_SCO"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioManager.html#ROUTE_BLUETOOTH_SCO" target="_top"><code>ROUTE_BLUETOOTH_SCO</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioManager.ROUTE_EARPIECE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioManager.html#ROUTE_EARPIECE" target="_top"><code>ROUTE_EARPIECE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioManager.ROUTE_HEADSET"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioManager.html#ROUTE_HEADSET" target="_top"><code>ROUTE_HEADSET</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.AudioManager.ROUTE_SPEAKER"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/AudioManager.html#ROUTE_SPEAKER" target="_top"><code>ROUTE_SPEAKER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.media.MediaPlayer.html b/docs/html/sdk/api_diff/5/changes/android.media.MediaPlayer.html
new file mode 100644
index 0000000..e0ba3fe
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.media.MediaPlayer.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.media.MediaPlayer
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.media.<A HREF="../../../../reference/android/media/MediaPlayer.html" target="_top"><font size="+2"><code>MediaPlayer</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.MediaPlayer.MEDIA_INFO_METADATA_UPDATE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/media/MediaPlayer.html#MEDIA_INFO_METADATA_UPDATE" target="_top"><code>MEDIA_INFO_METADATA_UPDATE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.media.ToneGenerator.html b/docs/html/sdk/api_diff/5/changes/android.media.ToneGenerator.html
new file mode 100644
index 0000000..b7f3024
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.media.ToneGenerator.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.media.ToneGenerator
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.media.<A HREF="../../../../reference/android/media/ToneGenerator.html" target="_top"><font size="+2"><code>ToneGenerator</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media.ToneGenerator.startTone_added(int, int)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/media/ToneGenerator.html#startTone(int, int)" target="_top"><code>startTone</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.opengl.GLSurfaceView.html b/docs/html/sdk/api_diff/5/changes/android.opengl.GLSurfaceView.html
new file mode 100644
index 0000000..78be54c
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.opengl.GLSurfaceView.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.opengl.GLSurfaceView
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.opengl.<A HREF="../../../../reference/android/opengl/GLSurfaceView.html" target="_top"><font size="+2"><code>GLSurfaceView</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.opengl.GLSurfaceView.setEGLContextFactory_added(android.opengl.GLSurfaceView.EGLContextFactory)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/opengl/GLSurfaceView.html#setEGLContextFactory(android.opengl.GLSurfaceView.EGLContextFactory)" target="_top"><code>setEGLContextFactory</code></A>(<code>EGLContextFactory</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.opengl.GLSurfaceView.setEGLWindowSurfaceFactory_added(android.opengl.GLSurfaceView.EGLWindowSurfaceFactory)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/opengl/GLSurfaceView.html#setEGLWindowSurfaceFactory(android.opengl.GLSurfaceView.EGLWindowSurfaceFactory)" target="_top"><code>setEGLWindowSurfaceFactory</code></A>(<code>EGLWindowSurfaceFactory</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.os.BatteryManager.html b/docs/html/sdk/api_diff/5/changes/android.os.BatteryManager.html
new file mode 100644
index 0000000..9ac9fad
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.os.BatteryManager.html
@@ -0,0 +1,185 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.os.BatteryManager
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.os.<A HREF="../../../../reference/android/os/BatteryManager.html" target="_top"><font size="+2"><code>BatteryManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.BatteryManager.EXTRA_HEALTH"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/os/BatteryManager.html#EXTRA_HEALTH" target="_top"><code>EXTRA_HEALTH</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.BatteryManager.EXTRA_ICON_SMALL"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/os/BatteryManager.html#EXTRA_ICON_SMALL" target="_top"><code>EXTRA_ICON_SMALL</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.BatteryManager.EXTRA_LEVEL"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/os/BatteryManager.html#EXTRA_LEVEL" target="_top"><code>EXTRA_LEVEL</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.BatteryManager.EXTRA_PLUGGED"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/os/BatteryManager.html#EXTRA_PLUGGED" target="_top"><code>EXTRA_PLUGGED</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.BatteryManager.EXTRA_PRESENT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/os/BatteryManager.html#EXTRA_PRESENT" target="_top"><code>EXTRA_PRESENT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.BatteryManager.EXTRA_SCALE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/os/BatteryManager.html#EXTRA_SCALE" target="_top"><code>EXTRA_SCALE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.BatteryManager.EXTRA_STATUS"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/os/BatteryManager.html#EXTRA_STATUS" target="_top"><code>EXTRA_STATUS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.BatteryManager.EXTRA_TECHNOLOGY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/os/BatteryManager.html#EXTRA_TECHNOLOGY" target="_top"><code>EXTRA_TECHNOLOGY</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.BatteryManager.EXTRA_TEMPERATURE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/os/BatteryManager.html#EXTRA_TEMPERATURE" target="_top"><code>EXTRA_TEMPERATURE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.BatteryManager.EXTRA_VOLTAGE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/os/BatteryManager.html#EXTRA_VOLTAGE" target="_top"><code>EXTRA_VOLTAGE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.os.Build.VERSION_CODES.html b/docs/html/sdk/api_diff/5/changes/android.os.Build.VERSION_CODES.html
new file mode 100644
index 0000000..3cb73c8
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.os.Build.VERSION_CODES.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.os.Build.VERSION_CODES
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.os.<A HREF="../../../../reference/android/os/Build.VERSION_CODES.html" target="_top"><font size="+2"><code>Build.VERSION_CODES</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.Build.VERSION_CODES.ECLAIR"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/os/Build.VERSION_CODES.html#ECLAIR" target="_top"><code>ECLAIR</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.os.Debug.MemoryInfo.html b/docs/html/sdk/api_diff/5/changes/android.os.Debug.MemoryInfo.html
new file mode 100644
index 0000000..65c8eb8
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.os.Debug.MemoryInfo.html
@@ -0,0 +1,173 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.os.Debug.MemoryInfo
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.os.<A HREF="../../../../reference/android/os/Debug.MemoryInfo.html" target="_top"><font size="+2"><code>Debug.MemoryInfo</code></font></A>
+</H2>
+<p><font xsize="+1">Added interface <code>android.os.Parcelable</code>.<br></font>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.Debug.MemoryInfo.describeContents_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/os/Debug.MemoryInfo.html#describeContents()" target="_top"><code>describeContents</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.Debug.MemoryInfo.getTotalPrivateDirty_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/os/Debug.MemoryInfo.html#getTotalPrivateDirty()" target="_top"><code>getTotalPrivateDirty</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.Debug.MemoryInfo.getTotalPss_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/os/Debug.MemoryInfo.html#getTotalPss()" target="_top"><code>getTotalPss</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.Debug.MemoryInfo.getTotalSharedDirty_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/os/Debug.MemoryInfo.html#getTotalSharedDirty()" target="_top"><code>getTotalSharedDirty</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.Debug.MemoryInfo.readFromParcel_added(android.os.Parcel)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/os/Debug.MemoryInfo.html#readFromParcel(android.os.Parcel)" target="_top"><code>readFromParcel</code></A>(<code>Parcel</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.Debug.MemoryInfo.writeToParcel_added(android.os.Parcel, int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/os/Debug.MemoryInfo.html#writeToParcel(android.os.Parcel, int)" target="_top"><code>writeToParcel</code></A>(<code>Parcel,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.Debug.MemoryInfo.CREATOR"></A>
+ <nobr><code>Creator</code> <A HREF="../../../../reference/android/os/Debug.MemoryInfo.html#CREATOR" target="_top"><code>CREATOR</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.os.HandlerThread.html b/docs/html/sdk/api_diff/5/changes/android.os.HandlerThread.html
new file mode 100644
index 0000000..57b149f
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.os.HandlerThread.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.os.HandlerThread
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.os.<A HREF="../../../../reference/android/os/HandlerThread.html" target="_top"><font size="+2"><code>HandlerThread</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os.HandlerThread.quit_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/os/HandlerThread.html#quit()" target="_top"><code>quit</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.ContactMethods.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.ContactMethods.html
new file mode 100644
index 0000000..633a65f
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.ContactMethods.html
@@ -0,0 +1,354 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.ContactMethods
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html" target="_top"><font size="+2"><code>Contacts.ContactMethods</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.addPostalLocation_changed(android.content.Context, long, double, double)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#addPostalLocation(android.content.Context, long, double, double)" target="_top"><code>addPostalLocation</code></A>(<code>Context,</nobr> long<nobr>,</nobr> double<nobr>,</nobr> double<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.decodeImProtocol_changed(java.lang.String)"></A>
+ <nobr><code>Object</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#decodeImProtocol(java.lang.String)" target="_top"><code>decodeImProtocol</code></A>(<code>String</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.encodeCustomImProtocol_changed(java.lang.String)"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#encodeCustomImProtocol(java.lang.String)" target="_top"><code>encodeCustomImProtocol</code></A>(<code>String</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.encodePredefinedImProtocol_changed(int)"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#encodePredefinedImProtocol(int)" target="_top"><code>encodePredefinedImProtocol</code></A>(<code>int</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.getDisplayLabel_changed(android.content.Context, int, int, java.lang.CharSequence)"></A>
+ <nobr><code>CharSequence</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#getDisplayLabel(android.content.Context, int, int, java.lang.CharSequence)" target="_top"><code>getDisplayLabel</code></A>(<code>Context,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> CharSequence<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.CONTENT_EMAIL_ITEM_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#CONTENT_EMAIL_ITEM_TYPE" target="_top"><code>CONTENT_EMAIL_ITEM_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.CONTENT_EMAIL_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#CONTENT_EMAIL_TYPE" target="_top"><code>CONTENT_EMAIL_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.CONTENT_EMAIL_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#CONTENT_EMAIL_URI" target="_top"><code>CONTENT_EMAIL_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.CONTENT_IM_ITEM_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#CONTENT_IM_ITEM_TYPE" target="_top"><code>CONTENT_IM_ITEM_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.CONTENT_POSTAL_ITEM_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#CONTENT_POSTAL_ITEM_TYPE" target="_top"><code>CONTENT_POSTAL_ITEM_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.CONTENT_POSTAL_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#CONTENT_POSTAL_TYPE" target="_top"><code>CONTENT_POSTAL_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.CONTENT_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#CONTENT_TYPE" target="_top"><code>CONTENT_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.CONTENT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#CONTENT_URI" target="_top"><code>CONTENT_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.DEFAULT_SORT_ORDER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#DEFAULT_SORT_ORDER" target="_top"><code>DEFAULT_SORT_ORDER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.PERSON_ID"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.POSTAL_LOCATION_LATITUDE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#POSTAL_LOCATION_LATITUDE" target="_top"><code>POSTAL_LOCATION_LATITUDE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.POSTAL_LOCATION_LONGITUDE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#POSTAL_LOCATION_LONGITUDE" target="_top"><code>POSTAL_LOCATION_LONGITUDE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.PROTOCOL_AIM"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#PROTOCOL_AIM" target="_top"><code>PROTOCOL_AIM</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.PROTOCOL_GOOGLE_TALK"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#PROTOCOL_GOOGLE_TALK" target="_top"><code>PROTOCOL_GOOGLE_TALK</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.PROTOCOL_ICQ"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#PROTOCOL_ICQ" target="_top"><code>PROTOCOL_ICQ</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.PROTOCOL_JABBER"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#PROTOCOL_JABBER" target="_top"><code>PROTOCOL_JABBER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.PROTOCOL_MSN"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#PROTOCOL_MSN" target="_top"><code>PROTOCOL_MSN</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.PROTOCOL_QQ"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#PROTOCOL_QQ" target="_top"><code>PROTOCOL_QQ</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.PROTOCOL_SKYPE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#PROTOCOL_SKYPE" target="_top"><code>PROTOCOL_SKYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethods.PROTOCOL_YAHOO"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethods.html#PROTOCOL_YAHOO" target="_top"><code>PROTOCOL_YAHOO</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.ContactMethodsColumns.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.ContactMethodsColumns.html
new file mode 100644
index 0000000..bb2ae04
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.ContactMethodsColumns.html
@@ -0,0 +1,206 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.ContactMethodsColumns
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.provider.<A HREF="../../../../reference/android/provider/Contacts.ContactMethodsColumns.html" target="_top"><font size="+2"><code>Contacts.ContactMethodsColumns</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethodsColumns.AUX_DATA"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethodsColumns.html#AUX_DATA" target="_top"><code>AUX_DATA</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethodsColumns.DATA"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethodsColumns.html#DATA" target="_top"><code>DATA</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethodsColumns.ISPRIMARY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethodsColumns.html#ISPRIMARY" target="_top"><code>ISPRIMARY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethodsColumns.KIND"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethodsColumns.html#KIND" target="_top"><code>KIND</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethodsColumns.LABEL"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethodsColumns.html#LABEL" target="_top"><code>LABEL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethodsColumns.TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethodsColumns.html#TYPE" target="_top"><code>TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethodsColumns.TYPE_CUSTOM"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethodsColumns.html#TYPE_CUSTOM" target="_top"><code>TYPE_CUSTOM</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethodsColumns.TYPE_HOME"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethodsColumns.html#TYPE_HOME" target="_top"><code>TYPE_HOME</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethodsColumns.TYPE_OTHER"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethodsColumns.html#TYPE_OTHER" target="_top"><code>TYPE_OTHER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ContactMethodsColumns.TYPE_WORK"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.ContactMethodsColumns.html#TYPE_WORK" target="_top"><code>TYPE_WORK</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Extensions.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Extensions.html
new file mode 100644
index 0000000..763accb
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Extensions.html
@@ -0,0 +1,161 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.Extensions
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Extensions.html" target="_top"><font size="+2"><code>Contacts.Extensions</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Extensions.CONTENT_ITEM_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Extensions.html#CONTENT_ITEM_TYPE" target="_top"><code>CONTENT_ITEM_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Extensions.CONTENT_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Extensions.html#CONTENT_TYPE" target="_top"><code>CONTENT_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Extensions.CONTENT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.Extensions.html#CONTENT_URI" target="_top"><code>CONTENT_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Extensions.DEFAULT_SORT_ORDER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Extensions.html#DEFAULT_SORT_ORDER" target="_top"><code>DEFAULT_SORT_ORDER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Extensions.PERSON_ID"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Extensions.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.ExtensionsColumns.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.ExtensionsColumns.html
new file mode 100644
index 0000000..09a6434
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.ExtensionsColumns.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.ExtensionsColumns
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.provider.<A HREF="../../../../reference/android/provider/Contacts.ExtensionsColumns.html" target="_top"><font size="+2"><code>Contacts.ExtensionsColumns</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ExtensionsColumns.NAME"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ExtensionsColumns.html#NAME" target="_top"><code>NAME</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.ExtensionsColumns.VALUE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.ExtensionsColumns.html#VALUE" target="_top"><code>VALUE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.GroupMembership.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.GroupMembership.html
new file mode 100644
index 0000000..8ede257
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.GroupMembership.html
@@ -0,0 +1,221 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.GroupMembership
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.GroupMembership.html" target="_top"><font size="+2"><code>Contacts.GroupMembership</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupMembership.GROUP_SYNC_ACCOUNT_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupMembership.html#GROUP_SYNC_ACCOUNT_TYPE" target="_top"><code>GROUP_SYNC_ACCOUNT_TYPE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupMembership.CONTENT_DIRECTORY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupMembership.html#CONTENT_DIRECTORY" target="_top"><code>CONTENT_DIRECTORY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupMembership.CONTENT_ITEM_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupMembership.html#CONTENT_ITEM_TYPE" target="_top"><code>CONTENT_ITEM_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupMembership.CONTENT_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupMembership.html#CONTENT_TYPE" target="_top"><code>CONTENT_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupMembership.CONTENT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.GroupMembership.html#CONTENT_URI" target="_top"><code>CONTENT_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupMembership.DEFAULT_SORT_ORDER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupMembership.html#DEFAULT_SORT_ORDER" target="_top"><code>DEFAULT_SORT_ORDER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupMembership.GROUP_ID"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupMembership.html#GROUP_ID" target="_top"><code>GROUP_ID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupMembership.GROUP_SYNC_ACCOUNT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupMembership.html#GROUP_SYNC_ACCOUNT" target="_top"><code>GROUP_SYNC_ACCOUNT</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupMembership.GROUP_SYNC_ID"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupMembership.html#GROUP_SYNC_ID" target="_top"><code>GROUP_SYNC_ID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupMembership.PERSON_ID"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupMembership.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupMembership.RAW_CONTENT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.GroupMembership.html#RAW_CONTENT_URI" target="_top"><code>RAW_CONTENT_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Groups.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Groups.html
new file mode 100644
index 0000000..556c60e
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Groups.html
@@ -0,0 +1,179 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.Groups
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Groups.html" target="_top"><font size="+2"><code>Contacts.Groups</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Groups.CONTENT_ITEM_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Groups.html#CONTENT_ITEM_TYPE" target="_top"><code>CONTENT_ITEM_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Groups.CONTENT_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Groups.html#CONTENT_TYPE" target="_top"><code>CONTENT_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Groups.CONTENT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.Groups.html#CONTENT_URI" target="_top"><code>CONTENT_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Groups.DEFAULT_SORT_ORDER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Groups.html#DEFAULT_SORT_ORDER" target="_top"><code>DEFAULT_SORT_ORDER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Groups.DELETED_CONTENT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.Groups.html#DELETED_CONTENT_URI" target="_top"><code>DELETED_CONTENT_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Groups.GROUP_ANDROID_STARRED"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Groups.html#GROUP_ANDROID_STARRED" target="_top"><code>GROUP_ANDROID_STARRED</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Groups.GROUP_MY_CONTACTS"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Groups.html#GROUP_MY_CONTACTS" target="_top"><code>GROUP_MY_CONTACTS</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.GroupsColumns.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.GroupsColumns.html
new file mode 100644
index 0000000..ef6b86c
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.GroupsColumns.html
@@ -0,0 +1,152 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.GroupsColumns
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.provider.<A HREF="../../../../reference/android/provider/Contacts.GroupsColumns.html" target="_top"><font size="+2"><code>Contacts.GroupsColumns</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupsColumns.NAME"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupsColumns.html#NAME" target="_top"><code>NAME</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupsColumns.NOTES"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupsColumns.html#NOTES" target="_top"><code>NOTES</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupsColumns.SHOULD_SYNC"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupsColumns.html#SHOULD_SYNC" target="_top"><code>SHOULD_SYNC</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.GroupsColumns.SYSTEM_ID"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.GroupsColumns.html#SYSTEM_ID" target="_top"><code>SYSTEM_ID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Intents.Insert.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Intents.Insert.html
new file mode 100644
index 0000000..1c0b74a
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Intents.Insert.html
@@ -0,0 +1,377 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.Intents.Insert
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html" target="_top"><font size="+2"><code>Contacts.Intents.Insert</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.ctor_changed()"></A>
+ <nobr><A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#Contacts.Intents.Insert()" target="_top"><code>Contacts.Intents.Insert</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.ACTION"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#ACTION" target="_top"><code>ACTION</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.COMPANY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#COMPANY" target="_top"><code>COMPANY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.EMAIL"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#EMAIL" target="_top"><code>EMAIL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.EMAIL_ISPRIMARY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#EMAIL_ISPRIMARY" target="_top"><code>EMAIL_ISPRIMARY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.EMAIL_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#EMAIL_TYPE" target="_top"><code>EMAIL_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.FULL_MODE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#FULL_MODE" target="_top"><code>FULL_MODE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.IM_HANDLE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#IM_HANDLE" target="_top"><code>IM_HANDLE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.IM_ISPRIMARY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#IM_ISPRIMARY" target="_top"><code>IM_ISPRIMARY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.IM_PROTOCOL"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#IM_PROTOCOL" target="_top"><code>IM_PROTOCOL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.JOB_TITLE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#JOB_TITLE" target="_top"><code>JOB_TITLE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.NAME"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#NAME" target="_top"><code>NAME</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.NOTES"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#NOTES" target="_top"><code>NOTES</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.PHONE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#PHONE" target="_top"><code>PHONE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.PHONETIC_NAME"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#PHONETIC_NAME" target="_top"><code>PHONETIC_NAME</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.PHONE_ISPRIMARY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#PHONE_ISPRIMARY" target="_top"><code>PHONE_ISPRIMARY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.PHONE_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#PHONE_TYPE" target="_top"><code>PHONE_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.POSTAL"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#POSTAL" target="_top"><code>POSTAL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.POSTAL_ISPRIMARY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#POSTAL_ISPRIMARY" target="_top"><code>POSTAL_ISPRIMARY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.POSTAL_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#POSTAL_TYPE" target="_top"><code>POSTAL_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#SECONDARY_EMAIL" target="_top"><code>SECONDARY_EMAIL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#SECONDARY_EMAIL_TYPE" target="_top"><code>SECONDARY_EMAIL_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.SECONDARY_PHONE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#SECONDARY_PHONE" target="_top"><code>SECONDARY_PHONE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.SECONDARY_PHONE_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#SECONDARY_PHONE_TYPE" target="_top"><code>SECONDARY_PHONE_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.TERTIARY_EMAIL"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#TERTIARY_EMAIL" target="_top"><code>TERTIARY_EMAIL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.TERTIARY_EMAIL_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#TERTIARY_EMAIL_TYPE" target="_top"><code>TERTIARY_EMAIL_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.TERTIARY_PHONE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#TERTIARY_PHONE" target="_top"><code>TERTIARY_PHONE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.Insert.TERTIARY_PHONE_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.Insert.html#TERTIARY_PHONE_TYPE" target="_top"><code>TERTIARY_PHONE_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Intents.UI.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Intents.UI.html
new file mode 100644
index 0000000..fb629f7
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Intents.UI.html
@@ -0,0 +1,233 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.Intents.UI
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html" target="_top"><font size="+2"><code>Contacts.Intents.UI</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.UI.ctor_changed()"></A>
+ <nobr><A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#Contacts.Intents.UI()" target="_top"><code>Contacts.Intents.UI</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.UI.FILTER_CONTACTS_ACTION"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#FILTER_CONTACTS_ACTION" target="_top"><code>FILTER_CONTACTS_ACTION</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.UI.FILTER_TEXT_EXTRA_KEY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#FILTER_TEXT_EXTRA_KEY" target="_top"><code>FILTER_TEXT_EXTRA_KEY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.UI.GROUP_NAME_EXTRA_KEY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#GROUP_NAME_EXTRA_KEY" target="_top"><code>GROUP_NAME_EXTRA_KEY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.UI.LIST_ALL_CONTACTS_ACTION"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#LIST_ALL_CONTACTS_ACTION" target="_top"><code>LIST_ALL_CONTACTS_ACTION</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.UI.LIST_CONTACTS_WITH_PHONES_ACTION"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#LIST_CONTACTS_WITH_PHONES_ACTION" target="_top"><code>LIST_CONTACTS_WITH_PHONES_ACTION</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.UI.LIST_DEFAULT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#LIST_DEFAULT" target="_top"><code>LIST_DEFAULT</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.UI.LIST_FREQUENT_ACTION"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#LIST_FREQUENT_ACTION" target="_top"><code>LIST_FREQUENT_ACTION</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.UI.LIST_GROUP_ACTION"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#LIST_GROUP_ACTION" target="_top"><code>LIST_GROUP_ACTION</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.UI.LIST_STARRED_ACTION"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#LIST_STARRED_ACTION" target="_top"><code>LIST_STARRED_ACTION</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.UI.LIST_STREQUENT_ACTION"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#LIST_STREQUENT_ACTION" target="_top"><code>LIST_STREQUENT_ACTION</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.UI.TITLE_EXTRA_KEY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.UI.html#TITLE_EXTRA_KEY" target="_top"><code>TITLE_EXTRA_KEY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Intents.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Intents.html
new file mode 100644
index 0000000..a18a794
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Intents.html
@@ -0,0 +1,197 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.Intents
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Intents.html" target="_top"><font size="+2"><code>Contacts.Intents</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.ctor_changed()"></A>
+ <nobr><A HREF="../../../../reference/android/provider/Contacts.Intents.html#Contacts.Intents()" target="_top"><code>Contacts.Intents</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.ATTACH_IMAGE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.html#ATTACH_IMAGE" target="_top"><code>ATTACH_IMAGE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.EXTRA_CREATE_DESCRIPTION"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.html#EXTRA_CREATE_DESCRIPTION" target="_top"><code>EXTRA_CREATE_DESCRIPTION</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.EXTRA_FORCE_CREATE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.html#EXTRA_FORCE_CREATE" target="_top"><code>EXTRA_FORCE_CREATE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.SEARCH_SUGGESTION_CLICKED"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.html#SEARCH_SUGGESTION_CLICKED" target="_top"><code>SEARCH_SUGGESTION_CLICKED</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.html#SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED" target="_top"><code>SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.html#SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED" target="_top"><code>SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Intents.SHOW_OR_CREATE_CONTACT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Intents.html#SHOW_OR_CREATE_CONTACT" target="_top"><code>SHOW_OR_CREATE_CONTACT</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.OrganizationColumns.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.OrganizationColumns.html
new file mode 100644
index 0000000..45a241c
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.OrganizationColumns.html
@@ -0,0 +1,197 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.OrganizationColumns
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.provider.<A HREF="../../../../reference/android/provider/Contacts.OrganizationColumns.html" target="_top"><font size="+2"><code>Contacts.OrganizationColumns</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.OrganizationColumns.COMPANY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.OrganizationColumns.html#COMPANY" target="_top"><code>COMPANY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.OrganizationColumns.ISPRIMARY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.OrganizationColumns.html#ISPRIMARY" target="_top"><code>ISPRIMARY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.OrganizationColumns.LABEL"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.OrganizationColumns.html#LABEL" target="_top"><code>LABEL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.OrganizationColumns.PERSON_ID"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.OrganizationColumns.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.OrganizationColumns.TITLE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.OrganizationColumns.html#TITLE" target="_top"><code>TITLE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.OrganizationColumns.TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.OrganizationColumns.html#TYPE" target="_top"><code>TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.OrganizationColumns.TYPE_CUSTOM"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.OrganizationColumns.html#TYPE_CUSTOM" target="_top"><code>TYPE_CUSTOM</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.OrganizationColumns.TYPE_OTHER"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.OrganizationColumns.html#TYPE_OTHER" target="_top"><code>TYPE_OTHER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.OrganizationColumns.TYPE_WORK"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.OrganizationColumns.html#TYPE_WORK" target="_top"><code>TYPE_WORK</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Organizations.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Organizations.html
new file mode 100644
index 0000000..64c0cf7
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Organizations.html
@@ -0,0 +1,161 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.Organizations
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Organizations.html" target="_top"><font size="+2"><code>Contacts.Organizations</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Organizations.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence)"></A>
+ <nobr><code>CharSequence</code> <A HREF="../../../../reference/android/provider/Contacts.Organizations.html#getDisplayLabel(android.content.Context, int, java.lang.CharSequence)" target="_top"><code>getDisplayLabel</code></A>(<code>Context,</nobr> int<nobr>,</nobr> CharSequence<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Organizations.CONTENT_DIRECTORY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Organizations.html#CONTENT_DIRECTORY" target="_top"><code>CONTENT_DIRECTORY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Organizations.CONTENT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.Organizations.html#CONTENT_URI" target="_top"><code>CONTENT_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Organizations.DEFAULT_SORT_ORDER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Organizations.html#DEFAULT_SORT_ORDER" target="_top"><code>DEFAULT_SORT_ORDER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.People.ContactMethods.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.People.ContactMethods.html
new file mode 100644
index 0000000..0c9340a
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.People.ContactMethods.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.People.ContactMethods
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.People.ContactMethods.html" target="_top"><font size="+2"><code>Contacts.People.ContactMethods</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.ContactMethods.CONTENT_DIRECTORY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.ContactMethods.html#CONTENT_DIRECTORY" target="_top"><code>CONTENT_DIRECTORY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.ContactMethods.DEFAULT_SORT_ORDER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.ContactMethods.html#DEFAULT_SORT_ORDER" target="_top"><code>DEFAULT_SORT_ORDER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.People.Extensions.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.People.Extensions.html
new file mode 100644
index 0000000..63b77f3
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.People.Extensions.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.People.Extensions
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.People.Extensions.html" target="_top"><font size="+2"><code>Contacts.People.Extensions</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.Extensions.CONTENT_DIRECTORY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.Extensions.html#CONTENT_DIRECTORY" target="_top"><code>CONTENT_DIRECTORY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.Extensions.DEFAULT_SORT_ORDER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.Extensions.html#DEFAULT_SORT_ORDER" target="_top"><code>DEFAULT_SORT_ORDER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.Extensions.PERSON_ID"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.Extensions.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.People.Phones.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.People.Phones.html
new file mode 100644
index 0000000..f9f7087
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.People.Phones.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.People.Phones
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.People.Phones.html" target="_top"><font size="+2"><code>Contacts.People.Phones</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.Phones.CONTENT_DIRECTORY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.Phones.html#CONTENT_DIRECTORY" target="_top"><code>CONTENT_DIRECTORY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.Phones.DEFAULT_SORT_ORDER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.Phones.html#DEFAULT_SORT_ORDER" target="_top"><code>DEFAULT_SORT_ORDER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.People.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.People.html
new file mode 100644
index 0000000..5cf4e05
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.People.html
@@ -0,0 +1,295 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.People
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.People.html" target="_top"><font size="+2"><code>Contacts.People</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.addToMyContactsGroup_changed(android.content.ContentResolver, long)"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#addToMyContactsGroup(android.content.ContentResolver, long)" target="_top"><code>addToMyContactsGroup</code></A>(<code>ContentResolver,</nobr> long<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.createPersonInMyContactsGroup_changed(android.content.ContentResolver, android.content.ContentValues)"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#createPersonInMyContactsGroup(android.content.ContentResolver, android.content.ContentValues)" target="_top"><code>createPersonInMyContactsGroup</code></A>(<code>ContentResolver,</nobr> ContentValues<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.loadContactPhoto_changed(android.content.Context, android.net.Uri, int, android.graphics.BitmapFactory.Options)"></A>
+ <nobr><code>Bitmap</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#loadContactPhoto(android.content.Context, android.net.Uri, int, android.graphics.BitmapFactory.Options)" target="_top"><code>loadContactPhoto</code></A>(<code>Context,</nobr> Uri<nobr>,</nobr> int<nobr>,</nobr> Options<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.markAsContacted_changed(android.content.ContentResolver, long)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#markAsContacted(android.content.ContentResolver, long)" target="_top"><code>markAsContacted</code></A>(<code>ContentResolver,</nobr> long<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.openContactPhotoInputStream_changed(android.content.ContentResolver, android.net.Uri)"></A>
+ <nobr><code>InputStream</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#openContactPhotoInputStream(android.content.ContentResolver, android.net.Uri)" target="_top"><code>openContactPhotoInputStream</code></A>(<code>ContentResolver,</nobr> Uri<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.queryGroups_changed(android.content.ContentResolver, long)"></A>
+ <nobr><code>Cursor</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#queryGroups(android.content.ContentResolver, long)" target="_top"><code>queryGroups</code></A>(<code>ContentResolver,</nobr> long<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.setPhotoData_changed(android.content.ContentResolver, android.net.Uri, byte[])"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#setPhotoData(android.content.ContentResolver, android.net.Uri, byte[])" target="_top"><code>setPhotoData</code></A>(<code>ContentResolver,</nobr> Uri<nobr>,</nobr> byte[]<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.addToGroup_changed(android.content.ContentResolver, long, java.lang.String)"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#addToGroup(android.content.ContentResolver, long, java.lang.String)" target="_top"><code>addToGroup</code></A>(<code>ContentResolver,</nobr> long<nobr>,</nobr> String<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.addToGroup_changed(android.content.ContentResolver, long, long)"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#addToGroup(android.content.ContentResolver, long, long)" target="_top"><code>addToGroup</code></A>(<code>ContentResolver,</nobr> long<nobr>,</nobr> long<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.CONTENT_FILTER_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#CONTENT_FILTER_URI" target="_top"><code>CONTENT_FILTER_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.CONTENT_ITEM_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#CONTENT_ITEM_TYPE" target="_top"><code>CONTENT_ITEM_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.CONTENT_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#CONTENT_TYPE" target="_top"><code>CONTENT_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.CONTENT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#CONTENT_URI" target="_top"><code>CONTENT_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.DEFAULT_SORT_ORDER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#DEFAULT_SORT_ORDER" target="_top"><code>DEFAULT_SORT_ORDER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.DELETED_CONTENT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#DELETED_CONTENT_URI" target="_top"><code>DELETED_CONTENT_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.PRIMARY_EMAIL_ID"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#PRIMARY_EMAIL_ID" target="_top"><code>PRIMARY_EMAIL_ID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.PRIMARY_ORGANIZATION_ID"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#PRIMARY_ORGANIZATION_ID" target="_top"><code>PRIMARY_ORGANIZATION_ID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.People.PRIMARY_PHONE_ID"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.People.html#PRIMARY_PHONE_ID" target="_top"><code>PRIMARY_PHONE_ID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.PeopleColumns.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.PeopleColumns.html
new file mode 100644
index 0000000..4a0e979
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.PeopleColumns.html
@@ -0,0 +1,206 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.PeopleColumns
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.provider.<A HREF="../../../../reference/android/provider/Contacts.PeopleColumns.html" target="_top"><font size="+2"><code>Contacts.PeopleColumns</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PeopleColumns.CUSTOM_RINGTONE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PeopleColumns.html#CUSTOM_RINGTONE" target="_top"><code>CUSTOM_RINGTONE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PeopleColumns.DISPLAY_NAME"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PeopleColumns.html#DISPLAY_NAME" target="_top"><code>DISPLAY_NAME</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PeopleColumns.LAST_TIME_CONTACTED"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PeopleColumns.html#LAST_TIME_CONTACTED" target="_top"><code>LAST_TIME_CONTACTED</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PeopleColumns.NAME"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PeopleColumns.html#NAME" target="_top"><code>NAME</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PeopleColumns.NOTES"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PeopleColumns.html#NOTES" target="_top"><code>NOTES</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PeopleColumns.PHONETIC_NAME"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PeopleColumns.html#PHONETIC_NAME" target="_top"><code>PHONETIC_NAME</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PeopleColumns.PHOTO_VERSION"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PeopleColumns.html#PHOTO_VERSION" target="_top"><code>PHOTO_VERSION</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PeopleColumns.SEND_TO_VOICEMAIL"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PeopleColumns.html#SEND_TO_VOICEMAIL" target="_top"><code>SEND_TO_VOICEMAIL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PeopleColumns.STARRED"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PeopleColumns.html#STARRED" target="_top"><code>STARRED</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PeopleColumns.TIMES_CONTACTED"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PeopleColumns.html#TIMES_CONTACTED" target="_top"><code>TIMES_CONTACTED</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Phones.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Phones.html
new file mode 100644
index 0000000..e3cf573
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Phones.html
@@ -0,0 +1,198 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.Phones
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Phones.html" target="_top"><font size="+2"><code>Contacts.Phones</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Phones.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence)"></A>
+ <nobr><code>CharSequence</code> <A HREF="../../../../reference/android/provider/Contacts.Phones.html#getDisplayLabel(android.content.Context, int, java.lang.CharSequence)" target="_top"><code>getDisplayLabel</code></A>(<code>Context,</nobr> int<nobr>,</nobr> CharSequence<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Phones.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence, java.lang.CharSequence[])"></A>
+ <nobr><code>CharSequence</code> <A HREF="../../../../reference/android/provider/Contacts.Phones.html#getDisplayLabel(android.content.Context, int, java.lang.CharSequence, java.lang.CharSequence[])" target="_top"><code>getDisplayLabel</code></A>(<code>Context,</nobr> int<nobr>,</nobr> CharSequence<nobr>,</nobr> CharSequence[]<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Phones.CONTENT_FILTER_URL"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.Phones.html#CONTENT_FILTER_URL" target="_top"><code>CONTENT_FILTER_URL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Phones.CONTENT_ITEM_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Phones.html#CONTENT_ITEM_TYPE" target="_top"><code>CONTENT_ITEM_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Phones.CONTENT_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Phones.html#CONTENT_TYPE" target="_top"><code>CONTENT_TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Phones.CONTENT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.Phones.html#CONTENT_URI" target="_top"><code>CONTENT_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Phones.DEFAULT_SORT_ORDER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Phones.html#DEFAULT_SORT_ORDER" target="_top"><code>DEFAULT_SORT_ORDER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Phones.PERSON_ID"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Phones.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.PhonesColumns.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.PhonesColumns.html
new file mode 100644
index 0000000..e7786d8
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.PhonesColumns.html
@@ -0,0 +1,233 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.PhonesColumns
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.provider.<A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html" target="_top"><font size="+2"><code>Contacts.PhonesColumns</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhonesColumns.ISPRIMARY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#ISPRIMARY" target="_top"><code>ISPRIMARY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhonesColumns.LABEL"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#LABEL" target="_top"><code>LABEL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhonesColumns.NUMBER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#NUMBER" target="_top"><code>NUMBER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhonesColumns.NUMBER_KEY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#NUMBER_KEY" target="_top"><code>NUMBER_KEY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhonesColumns.TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#TYPE" target="_top"><code>TYPE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhonesColumns.TYPE_CUSTOM"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#TYPE_CUSTOM" target="_top"><code>TYPE_CUSTOM</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhonesColumns.TYPE_FAX_HOME"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#TYPE_FAX_HOME" target="_top"><code>TYPE_FAX_HOME</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhonesColumns.TYPE_FAX_WORK"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#TYPE_FAX_WORK" target="_top"><code>TYPE_FAX_WORK</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhonesColumns.TYPE_HOME"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#TYPE_HOME" target="_top"><code>TYPE_HOME</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhonesColumns.TYPE_MOBILE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#TYPE_MOBILE" target="_top"><code>TYPE_MOBILE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhonesColumns.TYPE_OTHER"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#TYPE_OTHER" target="_top"><code>TYPE_OTHER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhonesColumns.TYPE_PAGER"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#TYPE_PAGER" target="_top"><code>TYPE_PAGER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhonesColumns.TYPE_WORK"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.PhonesColumns.html#TYPE_WORK" target="_top"><code>TYPE_WORK</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Photos.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Photos.html
new file mode 100644
index 0000000..05d64ce
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Photos.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.Photos
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Photos.html" target="_top"><font size="+2"><code>Contacts.Photos</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Photos.CONTENT_DIRECTORY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Photos.html#CONTENT_DIRECTORY" target="_top"><code>CONTENT_DIRECTORY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Photos.CONTENT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.Photos.html#CONTENT_URI" target="_top"><code>CONTENT_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Photos.DEFAULT_SORT_ORDER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Photos.html#DEFAULT_SORT_ORDER" target="_top"><code>DEFAULT_SORT_ORDER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.PhotosColumns.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.PhotosColumns.html
new file mode 100644
index 0000000..b0ae613
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.PhotosColumns.html
@@ -0,0 +1,170 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.PhotosColumns
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.provider.<A HREF="../../../../reference/android/provider/Contacts.PhotosColumns.html" target="_top"><font size="+2"><code>Contacts.PhotosColumns</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhotosColumns.DATA"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PhotosColumns.html#DATA" target="_top"><code>DATA</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhotosColumns.DOWNLOAD_REQUIRED"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PhotosColumns.html#DOWNLOAD_REQUIRED" target="_top"><code>DOWNLOAD_REQUIRED</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhotosColumns.EXISTS_ON_SERVER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PhotosColumns.html#EXISTS_ON_SERVER" target="_top"><code>EXISTS_ON_SERVER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhotosColumns.LOCAL_VERSION"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PhotosColumns.html#LOCAL_VERSION" target="_top"><code>LOCAL_VERSION</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhotosColumns.PERSON_ID"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PhotosColumns.html#PERSON_ID" target="_top"><code>PERSON_ID</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PhotosColumns.SYNC_ERROR"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PhotosColumns.html#SYNC_ERROR" target="_top"><code>SYNC_ERROR</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.PresenceColumns.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.PresenceColumns.html
new file mode 100644
index 0000000..d1fd127
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.PresenceColumns.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.PresenceColumns
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.provider.<A HREF="../../../../reference/android/provider/Contacts.PresenceColumns.html" target="_top"><font size="+2"><code>Contacts.PresenceColumns</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PresenceColumns.IM_ACCOUNT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PresenceColumns.html#IM_ACCOUNT" target="_top"><code>IM_ACCOUNT</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PresenceColumns.IM_HANDLE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PresenceColumns.html#IM_HANDLE" target="_top"><code>IM_HANDLE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.PresenceColumns.IM_PROTOCOL"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.PresenceColumns.html#IM_PROTOCOL" target="_top"><code>IM_PROTOCOL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Settings.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Settings.html
new file mode 100644
index 0000000..bcbf265
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.Settings.html
@@ -0,0 +1,180 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.Settings
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Settings.html" target="_top"><font size="+2"><code>Contacts.Settings</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Settings.getSetting_changed(android.content.ContentResolver, java.lang.String, java.lang.String)"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Settings.html#getSetting(android.content.ContentResolver, java.lang.String, java.lang.String)" target="_top"><code>getSetting</code></A>(<code>ContentResolver,</nobr> String<nobr>,</nobr> String<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Settings.setSetting_changed(android.content.ContentResolver, java.lang.String, java.lang.String, java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/provider/Contacts.Settings.html#setSetting(android.content.ContentResolver, java.lang.String, java.lang.String, java.lang.String)" target="_top"><code>setSetting</code></A>(<code>ContentResolver,</nobr> String<nobr>,</nobr> String<nobr>,</nobr> String<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Settings.CONTENT_DIRECTORY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Settings.html#CONTENT_DIRECTORY" target="_top"><code>CONTENT_DIRECTORY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Settings.CONTENT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.Settings.html#CONTENT_URI" target="_top"><code>CONTENT_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Settings.DEFAULT_SORT_ORDER"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Settings.html#DEFAULT_SORT_ORDER" target="_top"><code>DEFAULT_SORT_ORDER</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.Settings.SYNC_EVERYTHING"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Settings.html#SYNC_EVERYTHING" target="_top"><code>SYNC_EVERYTHING</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.SettingsColumns.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.SettingsColumns.html
new file mode 100644
index 0000000..91a7103
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.SettingsColumns.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts.SettingsColumns
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.provider.<A HREF="../../../../reference/android/provider/Contacts.SettingsColumns.html" target="_top"><font size="+2"><code>Contacts.SettingsColumns</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.SettingsColumns._SYNC_ACCOUNT_TYPE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.SettingsColumns.html#_SYNC_ACCOUNT_TYPE" target="_top"><code>_SYNC_ACCOUNT_TYPE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.SettingsColumns.KEY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.SettingsColumns.html#KEY" target="_top"><code>KEY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.SettingsColumns.VALUE"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.SettingsColumns.html#VALUE" target="_top"><code>VALUE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.SettingsColumns._SYNC_ACCOUNT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.SettingsColumns.html#_SYNC_ACCOUNT" target="_top"><code>_SYNC_ACCOUNT</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.html b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.html
new file mode 100644
index 0000000..e7ee260
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Contacts.html
@@ -0,0 +1,179 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Contacts
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.html" target="_top"><font size="+2"><code>Contacts</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.AUTHORITY"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.html#AUTHORITY" target="_top"><code>AUTHORITY</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.CONTENT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.html#CONTENT_URI" target="_top"><code>CONTENT_URI</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.KIND_EMAIL"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.html#KIND_EMAIL" target="_top"><code>KIND_EMAIL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.KIND_IM"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.html#KIND_IM" target="_top"><code>KIND_IM</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.KIND_ORGANIZATION"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.html#KIND_ORGANIZATION" target="_top"><code>KIND_ORGANIZATION</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.KIND_PHONE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.html#KIND_PHONE" target="_top"><code>KIND_PHONE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Contacts.KIND_POSTAL"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/provider/Contacts.html#KIND_POSTAL" target="_top"><code>KIND_POSTAL</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.MediaStore.Images.Thumbnails.html b/docs/html/sdk/api_diff/5/changes/android.provider.MediaStore.Images.Thumbnails.html
new file mode 100644
index 0000000..b90610d
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.MediaStore.Images.Thumbnails.html
@@ -0,0 +1,144 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.MediaStore.Images.Thumbnails
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/MediaStore.Images.Thumbnails.html" target="_top"><font size="+2"><code>MediaStore.Images.Thumbnails</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.MediaStore.Images.Thumbnails.cancelThumbnailRequest_added(android.content.ContentResolver, long)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/provider/MediaStore.Images.Thumbnails.html#cancelThumbnailRequest(android.content.ContentResolver, long)" target="_top"><code>cancelThumbnailRequest</code></A>(<code>ContentResolver,</nobr> long<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.MediaStore.Images.Thumbnails.getThumbnail_added(android.content.ContentResolver, long, int, android.graphics.BitmapFactory.Options)"></A>
+ <nobr><code>Bitmap</code> <A HREF="../../../../reference/android/provider/MediaStore.Images.Thumbnails.html#getThumbnail(android.content.ContentResolver, long, int, android.graphics.BitmapFactory.Options)" target="_top"><code>getThumbnail</code></A>(<code>ContentResolver,</nobr> long<nobr>,</nobr> int<nobr>,</nobr> Options<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.MediaStore.Images.Thumbnails.THUMB_DATA"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/MediaStore.Images.Thumbnails.html#THUMB_DATA" target="_top"><code>THUMB_DATA</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Settings.System.html b/docs/html/sdk/api_diff/5/changes/android.provider.Settings.System.html
new file mode 100644
index 0000000..21fba1e
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Settings.System.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Settings.System
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Settings.System.html" target="_top"><font size="+2"><code>Settings.System</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Settings.System.ALARM_ALERT"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Settings.System.html#ALARM_ALERT" target="_top"><code>ALARM_ALERT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Settings.System.DEFAULT_ALARM_ALERT_URI"></A>
+ <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Settings.System.html#DEFAULT_ALARM_ALERT_URI" target="_top"><code>DEFAULT_ALARM_ALERT_URI</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.provider.Settings.html b/docs/html/sdk/api_diff/5/changes/android.provider.Settings.html
new file mode 100644
index 0000000..800830c
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.provider.Settings.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider.Settings
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.provider.<A HREF="../../../../reference/android/provider/Settings.html" target="_top"><font size="+2"><code>Settings</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Settings.ACTION_ACCESSIBILITY_SETTINGS"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Settings.html#ACTION_ACCESSIBILITY_SETTINGS" target="_top"><code>ACTION_ACCESSIBILITY_SETTINGS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider.Settings.ACTION_PRIVACY_SETTINGS"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Settings.html#ACTION_PRIVACY_SETTINGS" target="_top"><code>ACTION_PRIVACY_SETTINGS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.telephony.NeighboringCellInfo.html b/docs/html/sdk/api_diff/5/changes/android.telephony.NeighboringCellInfo.html
new file mode 100644
index 0000000..328187b
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.telephony.NeighboringCellInfo.html
@@ -0,0 +1,192 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.telephony.NeighboringCellInfo
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.telephony.<A HREF="../../../../reference/android/telephony/NeighboringCellInfo.html" target="_top"><font size="+2"><code>NeighboringCellInfo</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.NeighboringCellInfo.ctor_changed()"></A>
+ <nobr><A HREF="../../../../reference/android/telephony/NeighboringCellInfo.html#NeighboringCellInfo()" target="_top"><code>NeighboringCellInfo</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.NeighboringCellInfo.ctor_changed(int, int)"></A>
+ <nobr><A HREF="../../../../reference/android/telephony/NeighboringCellInfo.html#NeighboringCellInfo(int, int)" target="_top"><code>NeighboringCellInfo</code></A>(<code>int,</nobr> int<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.NeighboringCellInfo.getLac_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/telephony/NeighboringCellInfo.html#getLac()" target="_top"><code>getLac</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.NeighboringCellInfo.getNetworkType_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/telephony/NeighboringCellInfo.html#getNetworkType()" target="_top"><code>getNetworkType</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.NeighboringCellInfo.getPsc_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/telephony/NeighboringCellInfo.html#getPsc()" target="_top"><code>getPsc</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.NeighboringCellInfo.setCid_changed(int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/telephony/NeighboringCellInfo.html#setCid(int)" target="_top"><code>setCid</code></A>(<code>int</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.NeighboringCellInfo.setRssi_changed(int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/telephony/NeighboringCellInfo.html#setRssi(int)" target="_top"><code>setRssi</code></A>(<code>int</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.telephony.PhoneNumberUtils.html b/docs/html/sdk/api_diff/5/changes/android.telephony.PhoneNumberUtils.html
new file mode 100644
index 0000000..e54f8d1
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.telephony.PhoneNumberUtils.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.telephony.PhoneNumberUtils
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.telephony.<A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html" target="_top"><font size="+2"><code>PhoneNumberUtils</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.PhoneNumberUtils.compare_added(android.content.Context, java.lang.String, java.lang.String)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/telephony/PhoneNumberUtils.html#compare(android.content.Context, java.lang.String, java.lang.String)" target="_top"><code>compare</code></A>(<code>Context,</nobr> String<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.telephony.PhoneStateListener.html b/docs/html/sdk/api_diff/5/changes/android.telephony.PhoneStateListener.html
new file mode 100644
index 0000000..d881cdc
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.telephony.PhoneStateListener.html
@@ -0,0 +1,125 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.telephony.PhoneStateListener
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.telephony.<A HREF="../../../../reference/android/telephony/PhoneStateListener.html" target="_top"><font size="+2"><code>PhoneStateListener</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.PhoneStateListener.onSignalStrengthChanged_changed(int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/telephony/PhoneStateListener.html#onSignalStrengthChanged(int)" target="_top"><code>onSignalStrengthChanged</code></A>(<code>int</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.telephony.TelephonyManager.html b/docs/html/sdk/api_diff/5/changes/android.telephony.TelephonyManager.html
new file mode 100644
index 0000000..8760728
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.telephony.TelephonyManager.html
@@ -0,0 +1,193 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.telephony.TelephonyManager
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.telephony.<A HREF="../../../../reference/android/telephony/TelephonyManager.html" target="_top"><font size="+2"><code>TelephonyManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.TelephonyManager.hasIccCard_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/telephony/TelephonyManager.html#hasIccCard()" target="_top"><code>hasIccCard</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.TelephonyManager.DATA_ACTIVITY_DORMANT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/telephony/TelephonyManager.html#DATA_ACTIVITY_DORMANT" target="_top"><code>DATA_ACTIVITY_DORMANT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.TelephonyManager.NETWORK_TYPE_1xRTT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/telephony/TelephonyManager.html#NETWORK_TYPE_1xRTT" target="_top"><code>NETWORK_TYPE_1xRTT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.TelephonyManager.NETWORK_TYPE_CDMA"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/telephony/TelephonyManager.html#NETWORK_TYPE_CDMA" target="_top"><code>NETWORK_TYPE_CDMA</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.TelephonyManager.NETWORK_TYPE_EVDO_0"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/telephony/TelephonyManager.html#NETWORK_TYPE_EVDO_0" target="_top"><code>NETWORK_TYPE_EVDO_0</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.TelephonyManager.NETWORK_TYPE_EVDO_A"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/telephony/TelephonyManager.html#NETWORK_TYPE_EVDO_A" target="_top"><code>NETWORK_TYPE_EVDO_A</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.TelephonyManager.NETWORK_TYPE_HSDPA"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/telephony/TelephonyManager.html#NETWORK_TYPE_HSDPA" target="_top"><code>NETWORK_TYPE_HSDPA</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.TelephonyManager.NETWORK_TYPE_HSPA"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/telephony/TelephonyManager.html#NETWORK_TYPE_HSPA" target="_top"><code>NETWORK_TYPE_HSPA</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.TelephonyManager.NETWORK_TYPE_HSUPA"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/telephony/TelephonyManager.html#NETWORK_TYPE_HSUPA" target="_top"><code>NETWORK_TYPE_HSUPA</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.TelephonyManager.PHONE_TYPE_CDMA"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/telephony/TelephonyManager.html#PHONE_TYPE_CDMA" target="_top"><code>PHONE_TYPE_CDMA</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.test.AndroidTestRunner.html b/docs/html/sdk/api_diff/5/changes/android.test.AndroidTestRunner.html
new file mode 100644
index 0000000..dca92c3
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.test.AndroidTestRunner.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.test.AndroidTestRunner
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.test.<A HREF="../../../../reference/android/test/AndroidTestRunner.html" target="_top"><font size="+2"><code>AndroidTestRunner</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.test.AndroidTestRunner.setInstrumentation_added(android.app.Instrumentation)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/test/AndroidTestRunner.html#setInstrumentation(android.app.Instrumentation)" target="_top"><code>setInstrumentation</code></A>(<code>Instrumentation</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.test.AndroidTestRunner.setInstrumentaiton_changed(android.app.Instrumentation)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/test/AndroidTestRunner.html#setInstrumentaiton(android.app.Instrumentation)" target="_top"><code>setInstrumentaiton</code></A>(<code>Instrumentation</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.test.InstrumentationTestCase.html b/docs/html/sdk/api_diff/5/changes/android.test.InstrumentationTestCase.html
new file mode 100644
index 0000000..1b4964a
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.test.InstrumentationTestCase.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.test.InstrumentationTestCase
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.test.<A HREF="../../../../reference/android/test/InstrumentationTestCase.html" target="_top"><font size="+2"><code>InstrumentationTestCase</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.test.InstrumentationTestCase.injectInstrumentation_added(android.app.Instrumentation)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/test/InstrumentationTestCase.html#injectInstrumentation(android.app.Instrumentation)" target="_top"><code>injectInstrumentation</code></A>(<code>Instrumentation</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.test.InstrumentationTestCase.injectInsrumentation_changed(android.app.Instrumentation)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/test/InstrumentationTestCase.html#injectInsrumentation(android.app.Instrumentation)" target="_top"><code>injectInsrumentation</code></A>(<code>Instrumentation</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.test.mock.MockContext.html b/docs/html/sdk/api_diff/5/changes/android.test.mock.MockContext.html
new file mode 100644
index 0000000..da28c6c
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.test.mock.MockContext.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.test.mock.MockContext
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.test.mock.<A HREF="../../../../reference/android/test/mock/MockContext.html" target="_top"><font size="+2"><code>MockContext</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.test.mock.MockContext.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/test/mock/MockContext.html#sendStickyOrderedBroadcast(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" target="_top"><code>sendStickyOrderedBroadcast</code></A>(<code>Intent,</nobr> BroadcastReceiver<nobr>,</nobr> Handler<nobr>,</nobr> int<nobr>,</nobr> String<nobr>,</nobr> Bundle<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.test.mock.MockContext.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/test/mock/MockContext.html#startIntentSender(android.content.IntentSender, android.content.Intent, int, int, int)" target="_top"><code>startIntentSender</code></A>(<code>IntentSender,</nobr> Intent<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.test.mock.MockPackageManager.html b/docs/html/sdk/api_diff/5/changes/android.test.mock.MockPackageManager.html
new file mode 100644
index 0000000..3091d99
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.test.mock.MockPackageManager.html
@@ -0,0 +1,143 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.test.mock.MockPackageManager
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.test.mock.<A HREF="../../../../reference/android/test/mock/MockPackageManager.html" target="_top"><font size="+2"><code>MockPackageManager</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.test.mock.MockPackageManager.checkSignatures_added(int, int)"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/test/mock/MockPackageManager.html#checkSignatures(int, int)" target="_top"><code>checkSignatures</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.test.mock.MockPackageManager.getInstallerPackageName_added(java.lang.String)"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/test/mock/MockPackageManager.html#getInstallerPackageName(java.lang.String)" target="_top"><code>getInstallerPackageName</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.test.mock.MockPackageManager.getSystemAvailableFeatures_added()"></A>
+ <nobr><code>FeatureInfo[]</code> <A HREF="../../../../reference/android/test/mock/MockPackageManager.html#getSystemAvailableFeatures()" target="_top"><code>getSystemAvailableFeatures</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.test.mock.MockPackageManager.hasSystemFeature_added(java.lang.String)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/test/mock/MockPackageManager.html#hasSystemFeature(java.lang.String)" target="_top"><code>hasSystemFeature</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.text.InputType.html b/docs/html/sdk/api_diff/5/changes/android.text.InputType.html
new file mode 100644
index 0000000..eb6f17c
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.text.InputType.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.text.InputType
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.text.<A HREF="../../../../reference/android/text/InputType.html" target="_top"><font size="+2"><code>InputType</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.text.InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/text/InputType.html#TYPE_TEXT_FLAG_NO_SUGGESTIONS" target="_top"><code>TYPE_TEXT_FLAG_NO_SUGGESTIONS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.text.TextPaint.html b/docs/html/sdk/api_diff/5/changes/android.text.TextPaint.html
new file mode 100644
index 0000000..ac7967f
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.text.TextPaint.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.text.TextPaint
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.text.<A HREF="../../../../reference/android/text/TextPaint.html" target="_top"><font size="+2"><code>TextPaint</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.text.TextPaint.density"></A>
+ <nobr><code>float</code> <A HREF="../../../../reference/android/text/TextPaint.html#density" target="_top"><code>density</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.text.format.DateUtils.html b/docs/html/sdk/api_diff/5/changes/android.text.format.DateUtils.html
new file mode 100644
index 0000000..ecb8dc5
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.text.format.DateUtils.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.text.format.DateUtils
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.text.format.<A HREF="../../../../reference/android/text/format/DateUtils.html" target="_top"><font size="+2"><code>DateUtils</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.text.format.DateUtils.formatDateRange_added(android.content.Context, java.util.Formatter, long, long, int)"></A>
+ <nobr><code>Formatter</code> <A HREF="../../../../reference/android/text/format/DateUtils.html#formatDateRange(android.content.Context, java.util.Formatter, long, long, int)" target="_top"><code>formatDateRange</code></A>(<code>Context,</nobr> Formatter<nobr>,</nobr> long<nobr>,</nobr> long<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.text.format.Formatter.html b/docs/html/sdk/api_diff/5/changes/android.text.format.Formatter.html
new file mode 100644
index 0000000..c1d91d9
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.text.format.Formatter.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.text.format.Formatter
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.text.format.<A HREF="../../../../reference/android/text/format/Formatter.html" target="_top"><font size="+2"><code>Formatter</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.text.format.Formatter.formatShortFileSize_added(android.content.Context, long)"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/text/format/Formatter.html#formatShortFileSize(android.content.Context, long)" target="_top"><code>formatShortFileSize</code></A>(<code>Context,</nobr> long<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.text.style.AbsoluteSizeSpan.html b/docs/html/sdk/api_diff/5/changes/android.text.style.AbsoluteSizeSpan.html
new file mode 100644
index 0000000..db93ec3
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.text.style.AbsoluteSizeSpan.html
@@ -0,0 +1,137 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.text.style.AbsoluteSizeSpan
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.text.style.<A HREF="../../../../reference/android/text/style/AbsoluteSizeSpan.html" target="_top"><font size="+2"><code>AbsoluteSizeSpan</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.text.style.AbsoluteSizeSpan.ctor_added(int, boolean)"></A>
+ <nobr><A HREF="../../../../reference/android/text/style/AbsoluteSizeSpan.html#AbsoluteSizeSpan(int, boolean)" target="_top"><code>AbsoluteSizeSpan</code></A>(<code>int,</nobr> boolean<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.text.style.AbsoluteSizeSpan.getDip_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/text/style/AbsoluteSizeSpan.html#getDip()" target="_top"><code>getDip</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.text.style.ImageSpan.html b/docs/html/sdk/api_diff/5/changes/android.text.style.ImageSpan.html
new file mode 100644
index 0000000..856bd8c
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.text.style.ImageSpan.html
@@ -0,0 +1,133 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.text.style.ImageSpan
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.text.style.<A HREF="../../../../reference/android/text/style/ImageSpan.html" target="_top"><font size="+2"><code>ImageSpan</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.text.style.ImageSpan.ctor_changed(android.graphics.Bitmap)"></A>
+ <nobr><A HREF="../../../../reference/android/text/style/ImageSpan.html#ImageSpan(android.graphics.Bitmap)" target="_top"><code>ImageSpan</code></A>(<code>Bitmap</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.text.style.ImageSpan.ctor_changed(android.graphics.Bitmap, int)"></A>
+ <nobr><A HREF="../../../../reference/android/text/style/ImageSpan.html#ImageSpan(android.graphics.Bitmap, int)" target="_top"><code>ImageSpan</code></A>(<code>Bitmap,</nobr> int<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.view.HapticFeedbackConstants.html b/docs/html/sdk/api_diff/5/changes/android.view.HapticFeedbackConstants.html
new file mode 100644
index 0000000..78c745a
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.view.HapticFeedbackConstants.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view.HapticFeedbackConstants
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.view.<A HREF="../../../../reference/android/view/HapticFeedbackConstants.html" target="_top"><font size="+2"><code>HapticFeedbackConstants</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.HapticFeedbackConstants.VIRTUAL_KEY"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/HapticFeedbackConstants.html#VIRTUAL_KEY" target="_top"><code>VIRTUAL_KEY</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.view.KeyEvent.Callback.html b/docs/html/sdk/api_diff/5/changes/android.view.KeyEvent.Callback.html
new file mode 100644
index 0000000..23c4497
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.view.KeyEvent.Callback.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view.KeyEvent.Callback
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.view.<A HREF="../../../../reference/android/view/KeyEvent.Callback.html" target="_top"><font size="+2"><code>KeyEvent.Callback</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.Callback.onKeyLongPress_added(int, android.view.KeyEvent)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/view/KeyEvent.Callback.html#onKeyLongPress(int, android.view.KeyEvent)" target="_top"><code>onKeyLongPress</code></A>(<code>int,</nobr> KeyEvent<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.view.KeyEvent.html b/docs/html/sdk/api_diff/5/changes/android.view.KeyEvent.html
new file mode 100644
index 0000000..8cb61a6
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.view.KeyEvent.html
@@ -0,0 +1,236 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view.KeyEvent
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.view.<A HREF="../../../../reference/android/view/KeyEvent.html" target="_top"><font size="+2"><code>KeyEvent</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.ctor_changed(android.view.KeyEvent, long, int)"></A>
+ <nobr><A HREF="../../../../reference/android/view/KeyEvent.html#KeyEvent(android.view.KeyEvent, long, int)" target="_top"><code>KeyEvent</code></A>(<code>KeyEvent,</nobr> long<nobr>,</nobr> int<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.changeTimeRepeat_added(android.view.KeyEvent, long, int, int)"></A>
+ <nobr><code>KeyEvent</code> <A HREF="../../../../reference/android/view/KeyEvent.html#changeTimeRepeat(android.view.KeyEvent, long, int, int)" target="_top"><code>changeTimeRepeat</code></A>(<code>KeyEvent,</nobr> long<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.dispatch_added(android.view.KeyEvent.Callback, android.view.KeyEvent.DispatcherState, java.lang.Object)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/view/KeyEvent.html#dispatch(android.view.KeyEvent.Callback, android.view.KeyEvent.DispatcherState, java.lang.Object)" target="_top"><code>dispatch</code></A>(<code>Callback,</nobr> DispatcherState<nobr>,</nobr> Object<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.isCanceled_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/view/KeyEvent.html#isCanceled()" target="_top"><code>isCanceled</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.isLongPress_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/view/KeyEvent.html#isLongPress()" target="_top"><code>isLongPress</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.isTracking_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/view/KeyEvent.html#isTracking()" target="_top"><code>isTracking</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.startTracking_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/view/KeyEvent.html#startTracking()" target="_top"><code>startTracking</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.dispatch_changed(android.view.KeyEvent.Callback)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/view/KeyEvent.html#dispatch(android.view.KeyEvent.Callback)" target="_top"><code>dispatch</code></A>(<code>Callback</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.FLAG_CANCELED"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/KeyEvent.html#FLAG_CANCELED" target="_top"><code>FLAG_CANCELED</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.FLAG_CANCELED_LONG_PRESS"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/KeyEvent.html#FLAG_CANCELED_LONG_PRESS" target="_top"><code>FLAG_CANCELED_LONG_PRESS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.FLAG_LONG_PRESS"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/KeyEvent.html#FLAG_LONG_PRESS" target="_top"><code>FLAG_LONG_PRESS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.FLAG_TRACKING"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/KeyEvent.html#FLAG_TRACKING" target="_top"><code>FLAG_TRACKING</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.KeyEvent.FLAG_VIRTUAL_HARD_KEY"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/KeyEvent.html#FLAG_VIRTUAL_HARD_KEY" target="_top"><code>FLAG_VIRTUAL_HARD_KEY</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.view.MotionEvent.html b/docs/html/sdk/api_diff/5/changes/android.view.MotionEvent.html
new file mode 100644
index 0000000..f63171e
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.view.MotionEvent.html
@@ -0,0 +1,291 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view.MotionEvent
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.view.<A HREF="../../../../reference/android/view/MotionEvent.html" target="_top"><font size="+2"><code>MotionEvent</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.findPointerIndex_added(int)"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#findPointerIndex(int)" target="_top"><code>findPointerIndex</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.getHistoricalPressure_added(int, int)"></A>
+ <nobr><code>float</code> <A HREF="../../../../reference/android/view/MotionEvent.html#getHistoricalPressure(int, int)" target="_top"><code>getHistoricalPressure</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.getHistoricalSize_added(int, int)"></A>
+ <nobr><code>float</code> <A HREF="../../../../reference/android/view/MotionEvent.html#getHistoricalSize(int, int)" target="_top"><code>getHistoricalSize</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.getHistoricalX_added(int, int)"></A>
+ <nobr><code>float</code> <A HREF="../../../../reference/android/view/MotionEvent.html#getHistoricalX(int, int)" target="_top"><code>getHistoricalX</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.getHistoricalY_added(int, int)"></A>
+ <nobr><code>float</code> <A HREF="../../../../reference/android/view/MotionEvent.html#getHistoricalY(int, int)" target="_top"><code>getHistoricalY</code></A>(<code>int,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.getPointerCount_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#getPointerCount()" target="_top"><code>getPointerCount</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.getPointerId_added(int)"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#getPointerId(int)" target="_top"><code>getPointerId</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.getPressure_added(int)"></A>
+ <nobr><code>float</code> <A HREF="../../../../reference/android/view/MotionEvent.html#getPressure(int)" target="_top"><code>getPressure</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.getSize_added(int)"></A>
+ <nobr><code>float</code> <A HREF="../../../../reference/android/view/MotionEvent.html#getSize(int)" target="_top"><code>getSize</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.getX_added(int)"></A>
+ <nobr><code>float</code> <A HREF="../../../../reference/android/view/MotionEvent.html#getX(int)" target="_top"><code>getX</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.getY_added(int)"></A>
+ <nobr><code>float</code> <A HREF="../../../../reference/android/view/MotionEvent.html#getY(int)" target="_top"><code>getY</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.obtain_added(long, long, int, int, float, float, float, float, int, float, float, int, int)"></A>
+ <nobr><code>MotionEvent</code> <A HREF="../../../../reference/android/view/MotionEvent.html#obtain(long, long, int, int, float, float, float, float, int, float, float, int, int)" target="_top"><code>obtain</code></A>(<code>long,</nobr> long<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> int<nobr>,</nobr> float<nobr>,</nobr> float<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.obtainNoHistory_added(android.view.MotionEvent)"></A>
+ <nobr><code>MotionEvent</code> <A HREF="../../../../reference/android/view/MotionEvent.html#obtainNoHistory(android.view.MotionEvent)" target="_top"><code>obtainNoHistory</code></A>(<code>MotionEvent</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.ACTION_MASK"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#ACTION_MASK" target="_top"><code>ACTION_MASK</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.ACTION_POINTER_1_DOWN"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#ACTION_POINTER_1_DOWN" target="_top"><code>ACTION_POINTER_1_DOWN</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.ACTION_POINTER_1_UP"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#ACTION_POINTER_1_UP" target="_top"><code>ACTION_POINTER_1_UP</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.ACTION_POINTER_2_DOWN"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#ACTION_POINTER_2_DOWN" target="_top"><code>ACTION_POINTER_2_DOWN</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.ACTION_POINTER_2_UP"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#ACTION_POINTER_2_UP" target="_top"><code>ACTION_POINTER_2_UP</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.ACTION_POINTER_3_DOWN"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#ACTION_POINTER_3_DOWN" target="_top"><code>ACTION_POINTER_3_DOWN</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.ACTION_POINTER_3_UP"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#ACTION_POINTER_3_UP" target="_top"><code>ACTION_POINTER_3_UP</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.ACTION_POINTER_DOWN"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#ACTION_POINTER_DOWN" target="_top"><code>ACTION_POINTER_DOWN</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.ACTION_POINTER_ID_MASK"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#ACTION_POINTER_ID_MASK" target="_top"><code>ACTION_POINTER_ID_MASK</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.ACTION_POINTER_ID_SHIFT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#ACTION_POINTER_ID_SHIFT" target="_top"><code>ACTION_POINTER_ID_SHIFT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.MotionEvent.ACTION_POINTER_UP"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/MotionEvent.html#ACTION_POINTER_UP" target="_top"><code>ACTION_POINTER_UP</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.view.Surface.html b/docs/html/sdk/api_diff/5/changes/android.view.Surface.html
new file mode 100644
index 0000000..928c582
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.view.Surface.html
@@ -0,0 +1,151 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view.Surface
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.view.<A HREF="../../../../reference/android/view/Surface.html" target="_top"><font size="+2"><code>Surface</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.Surface.lockCanvas_changed(android.graphics.Rect)"></A>
+ <nobr><code>Canvas</code> <A HREF="../../../../reference/android/view/Surface.html#lockCanvas(android.graphics.Rect)" target="_top"><code>lockCanvas</code></A>(<code>Rect</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+Change in exceptions thrown from <code>android.view.Surface.OutOfResourcesException</code> to (<code>java.lang.IllegalArgumentException, android.view.Surface.OutOfResourcesException</code>).<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.Surface.GPU"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/Surface.html#GPU" target="_top"><code>GPU</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.Surface.HARDWARE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/Surface.html#HARDWARE" target="_top"><code>HARDWARE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.view.SurfaceHolder.html b/docs/html/sdk/api_diff/5/changes/android.view.SurfaceHolder.html
new file mode 100644
index 0000000..47a5c5c
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.view.SurfaceHolder.html
@@ -0,0 +1,133 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view.SurfaceHolder
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.view.<A HREF="../../../../reference/android/view/SurfaceHolder.html" target="_top"><font size="+2"><code>SurfaceHolder</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.SurfaceHolder.SURFACE_TYPE_GPU"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/SurfaceHolder.html#SURFACE_TYPE_GPU" target="_top"><code>SURFACE_TYPE_GPU</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.SurfaceHolder.SURFACE_TYPE_HARDWARE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/SurfaceHolder.html#SURFACE_TYPE_HARDWARE" target="_top"><code>SURFACE_TYPE_HARDWARE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.view.SurfaceView.html b/docs/html/sdk/api_diff/5/changes/android.view.SurfaceView.html
new file mode 100644
index 0000000..eb98659
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.view.SurfaceView.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view.SurfaceView
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.view.<A HREF="../../../../reference/android/view/SurfaceView.html" target="_top"><font size="+2"><code>SurfaceView</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.SurfaceView.setZOrderMediaOverlay_added(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/view/SurfaceView.html#setZOrderMediaOverlay(boolean)" target="_top"><code>setZOrderMediaOverlay</code></A>(<code>boolean</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.SurfaceView.setZOrderOnTop_added(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/view/SurfaceView.html#setZOrderOnTop(boolean)" target="_top"><code>setZOrderOnTop</code></A>(<code>boolean</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.view.View.html b/docs/html/sdk/api_diff/5/changes/android.view.View.html
new file mode 100644
index 0000000..44486d7
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.view.View.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view.View
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.view.<A HREF="../../../../reference/android/view/View.html" target="_top"><font size="+2"><code>View</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.View.awakenScrollBars_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/view/View.html#awakenScrollBars()" target="_top"><code>awakenScrollBars</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.View.awakenScrollBars_added(int)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/view/View.html#awakenScrollBars(int)" target="_top"><code>awakenScrollBars</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.View.awakenScrollBars_added(int, boolean)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/view/View.html#awakenScrollBars(int, boolean)" target="_top"><code>awakenScrollBars</code></A>(<code>int,</nobr> boolean<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.View.getKeyDispatcherState_added()"></A>
+ <nobr><code>DispatcherState</code> <A HREF="../../../../reference/android/view/View.html#getKeyDispatcherState()" target="_top"><code>getKeyDispatcherState</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.View.isScrollbarFadingEnabled_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/view/View.html#isScrollbarFadingEnabled()" target="_top"><code>isScrollbarFadingEnabled</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.View.onKeyLongPress_added(int, android.view.KeyEvent)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/view/View.html#onKeyLongPress(int, android.view.KeyEvent)" target="_top"><code>onKeyLongPress</code></A>(<code>int,</nobr> KeyEvent<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.View.setScrollbarFadingEnabled_added(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/view/View.html#setScrollbarFadingEnabled(boolean)" target="_top"><code>setScrollbarFadingEnabled</code></A>(<code>boolean</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.view.ViewConfiguration.html b/docs/html/sdk/api_diff/5/changes/android.view.ViewConfiguration.html
new file mode 100644
index 0000000..186e8ee
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.view.ViewConfiguration.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view.ViewConfiguration
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.view.<A HREF="../../../../reference/android/view/ViewConfiguration.html" target="_top"><font size="+2"><code>ViewConfiguration</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.ViewConfiguration.getScrollBarFadeDuration_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/ViewConfiguration.html#getScrollBarFadeDuration()" target="_top"><code>getScrollBarFadeDuration</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.ViewConfiguration.getScrollDefaultDelay_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/ViewConfiguration.html#getScrollDefaultDelay()" target="_top"><code>getScrollDefaultDelay</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.view.Window.Callback.html b/docs/html/sdk/api_diff/5/changes/android.view.Window.Callback.html
new file mode 100644
index 0000000..bafee60
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.view.Window.Callback.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view.Window.Callback
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.view.<A HREF="../../../../reference/android/view/Window.Callback.html" target="_top"><font size="+2"><code>Window.Callback</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.Window.Callback.onAttachedToWindow_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/view/Window.Callback.html#onAttachedToWindow()" target="_top"><code>onAttachedToWindow</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.Window.Callback.onDetachedFromWindow_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/view/Window.Callback.html#onDetachedFromWindow()" target="_top"><code>onDetachedFromWindow</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.view.WindowManager.LayoutParams.html b/docs/html/sdk/api_diff/5/changes/android.view.WindowManager.LayoutParams.html
new file mode 100644
index 0000000..1c70716
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.view.WindowManager.LayoutParams.html
@@ -0,0 +1,176 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view.WindowManager.LayoutParams
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.view.<A HREF="../../../../reference/android/view/WindowManager.LayoutParams.html" target="_top"><font size="+2"><code>WindowManager.LayoutParams</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/WindowManager.LayoutParams.html#FLAG_DISMISS_KEYGUARD" target="_top"><code>FLAG_DISMISS_KEYGUARD</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/WindowManager.LayoutParams.html#FLAG_SHOW_WALLPAPER" target="_top"><code>FLAG_SHOW_WALLPAPER</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/WindowManager.LayoutParams.html#FLAG_SHOW_WHEN_LOCKED" target="_top"><code>FLAG_SHOW_WHEN_LOCKED</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/WindowManager.LayoutParams.html#FLAG_TURN_SCREEN_ON" target="_top"><code>FLAG_TURN_SCREEN_ON</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.WindowManager.LayoutParams.TYPE_WALLPAPER"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/WindowManager.LayoutParams.html#TYPE_WALLPAPER" target="_top"><code>TYPE_WALLPAPER</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.WindowManager.LayoutParams.MEMORY_TYPE_GPU"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/WindowManager.LayoutParams.html#MEMORY_TYPE_GPU" target="_top"><code>MEMORY_TYPE_GPU</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.WindowManager.LayoutParams.MEMORY_TYPE_HARDWARE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/view/WindowManager.LayoutParams.html#MEMORY_TYPE_HARDWARE" target="_top"><code>MEMORY_TYPE_HARDWARE</code></font></A></nobr> </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.view.animation.Animation.html b/docs/html/sdk/api_diff/5/changes/android.view.animation.Animation.html
new file mode 100644
index 0000000..bc0a284
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.view.animation.Animation.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view.animation.Animation
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.view.animation.<A HREF="../../../../reference/android/view/animation/Animation.html" target="_top"><font size="+2"><code>Animation</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.animation.Animation.getDetachWallpaper_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/view/animation/Animation.html#getDetachWallpaper()" target="_top"><code>getDetachWallpaper</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.animation.Animation.setDetachWallpaper_added(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/view/animation/Animation.html#setDetachWallpaper(boolean)" target="_top"><code>setDetachWallpaper</code></A>(<code>boolean</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.webkit.CallbackProxy.html b/docs/html/sdk/api_diff/5/changes/android.webkit.CallbackProxy.html
new file mode 100644
index 0000000..515cd8a
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.webkit.CallbackProxy.html
@@ -0,0 +1,122 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.webkit.CallbackProxy
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.webkit.<A HREF="../../../../reference/android/webkit/CallbackProxy.html" target="_top"><font size="+2"><code>CallbackProxy</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.CallbackProxy.onExceededDatabaseQuota_added(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/CallbackProxy.html#onExceededDatabaseQuota(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)" target="_top"><code>onExceededDatabaseQuota</code></A>(<code>String,</nobr> String<nobr>,</nobr> long<nobr>,</nobr> long<nobr>,</nobr> long<nobr>,</nobr> QuotaUpdater<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.webkit.Plugin.html b/docs/html/sdk/api_diff/5/changes/android.webkit.Plugin.html
new file mode 100644
index 0000000..82f7083
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.webkit.Plugin.html
@@ -0,0 +1,234 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.webkit.Plugin
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.webkit.<A HREF="../../../../reference/android/webkit/Plugin.html" target="_top"><font size="+2"><code>Plugin</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.Plugin.ctor_changed(java.lang.String, java.lang.String, java.lang.String, java.lang.String)"></A>
+ <nobr><A HREF="../../../../reference/android/webkit/Plugin.html#Plugin(java.lang.String, java.lang.String, java.lang.String, java.lang.String)" target="_top"><code>Plugin</code></A>(<code>String,</nobr> String<nobr>,</nobr> String<nobr>,</nobr> String<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.Plugin.dispatchClickEvent_changed(android.content.Context)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/Plugin.html#dispatchClickEvent(android.content.Context)" target="_top"><code>dispatchClickEvent</code></A>(<code>Context</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.Plugin.getDescription_changed()"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/webkit/Plugin.html#getDescription()" target="_top"><code>getDescription</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.Plugin.getFileName_changed()"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/webkit/Plugin.html#getFileName()" target="_top"><code>getFileName</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.Plugin.getName_changed()"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/webkit/Plugin.html#getName()" target="_top"><code>getName</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.Plugin.getPath_changed()"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/webkit/Plugin.html#getPath()" target="_top"><code>getPath</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.Plugin.setClickHandler_changed(android.webkit.Plugin.PreferencesClickHandler)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/Plugin.html#setClickHandler(android.webkit.Plugin.PreferencesClickHandler)" target="_top"><code>setClickHandler</code></A>(<code>PreferencesClickHandler</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.Plugin.setDescription_changed(java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/Plugin.html#setDescription(java.lang.String)" target="_top"><code>setDescription</code></A>(<code>String</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.Plugin.setFileName_changed(java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/Plugin.html#setFileName(java.lang.String)" target="_top"><code>setFileName</code></A>(<code>String</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.Plugin.setName_changed(java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/Plugin.html#setName(java.lang.String)" target="_top"><code>setName</code></A>(<code>String</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.Plugin.setPath_changed(java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/Plugin.html#setPath(java.lang.String)" target="_top"><code>setPath</code></A>(<code>String</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.webkit.PluginData.html b/docs/html/sdk/api_diff/5/changes/android.webkit.PluginData.html
new file mode 100644
index 0000000..c500356
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.webkit.PluginData.html
@@ -0,0 +1,174 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.webkit.PluginData
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.webkit.<A HREF="../../../../reference/android/webkit/PluginData.html" target="_top"><font size="+2"><code>PluginData</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.PluginData.ctor_changed(java.io.InputStream, long, java.util.Map<java.lang.String, java.lang.String[]>, int)"></A>
+ <nobr><A HREF="../../../../reference/android/webkit/PluginData.html#PluginData(java.io.InputStream, long, java.util.Map<java.lang.String, java.lang.String[]>, int)" target="_top"><code>PluginData</code></A>(<code>InputStream,</nobr> long<nobr>,</nobr> Map<String<nobr>,</nobr> String[]><nobr>,</nobr> int<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.PluginData.getContentLength_changed()"></A>
+ <nobr><code>long</code> <A HREF="../../../../reference/android/webkit/PluginData.html#getContentLength()" target="_top"><code>getContentLength</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.PluginData.getHeaders_changed()"></A>
+ <nobr><code>Map<String, String[]></code> <A HREF="../../../../reference/android/webkit/PluginData.html#getHeaders()" target="_top"><code>getHeaders</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.PluginData.getInputStream_changed()"></A>
+ <nobr><code>InputStream</code> <A HREF="../../../../reference/android/webkit/PluginData.html#getInputStream()" target="_top"><code>getInputStream</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.PluginData.getStatusCode_changed()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/PluginData.html#getStatusCode()" target="_top"><code>getStatusCode</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.webkit.PluginList.html b/docs/html/sdk/api_diff/5/changes/android.webkit.PluginList.html
new file mode 100644
index 0000000..7bb7aea
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.webkit.PluginList.html
@@ -0,0 +1,184 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.webkit.PluginList
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.webkit.<A HREF="../../../../reference/android/webkit/PluginList.html" target="_top"><font size="+2"><code>PluginList</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.PluginList.ctor_changed()"></A>
+ <nobr><A HREF="../../../../reference/android/webkit/PluginList.html#PluginList()" target="_top"><code>PluginList</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.PluginList.addPlugin_changed(android.webkit.Plugin)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/PluginList.html#addPlugin(android.webkit.Plugin)" target="_top"><code>addPlugin</code></A>(<code>Plugin</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.PluginList.clear_changed()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/PluginList.html#clear()" target="_top"><code>clear</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.PluginList.getList_changed()"></A>
+ <nobr><code>List</code> <A HREF="../../../../reference/android/webkit/PluginList.html#getList()" target="_top"><code>getList</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.PluginList.pluginClicked_changed(android.content.Context, int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/PluginList.html#pluginClicked(android.content.Context, int)" target="_top"><code>pluginClicked</code></A>(<code>Context,</nobr> int<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.PluginList.removePlugin_changed(android.webkit.Plugin)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/PluginList.html#removePlugin(android.webkit.Plugin)" target="_top"><code>removePlugin</code></A>(<code>Plugin</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.webkit.UrlInterceptHandler.html b/docs/html/sdk/api_diff/5/changes/android.webkit.UrlInterceptHandler.html
new file mode 100644
index 0000000..2824ce3
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.webkit.UrlInterceptHandler.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.webkit.UrlInterceptHandler
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.webkit.<A HREF="../../../../reference/android/webkit/UrlInterceptHandler.html" target="_top"><font size="+2"><code>UrlInterceptHandler</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.UrlInterceptHandler.getPluginData_changed(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)"></A>
+ <nobr><code>PluginData</code> <A HREF="../../../../reference/android/webkit/UrlInterceptHandler.html#getPluginData(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)" target="_top"><code>getPluginData</code></A>(<code>String,</nobr> Map<String<nobr>,</nobr> String><nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.webkit.UrlInterceptRegistry.html b/docs/html/sdk/api_diff/5/changes/android.webkit.UrlInterceptRegistry.html
new file mode 100644
index 0000000..4fdd232
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.webkit.UrlInterceptRegistry.html
@@ -0,0 +1,166 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.webkit.UrlInterceptRegistry
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.webkit.<A HREF="../../../../reference/android/webkit/UrlInterceptRegistry.html" target="_top"><font size="+2"><code>UrlInterceptRegistry</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.UrlInterceptRegistry.getPluginData_changed(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)"></A>
+ <nobr><code>PluginData</code> <A HREF="../../../../reference/android/webkit/UrlInterceptRegistry.html#getPluginData(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)" target="_top"><code>getPluginData</code></A>(<code>String,</nobr> Map<String<nobr>,</nobr> String><nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.UrlInterceptRegistry.registerHandler_changed(android.webkit.UrlInterceptHandler)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/webkit/UrlInterceptRegistry.html#registerHandler(android.webkit.UrlInterceptHandler)" target="_top"><code>registerHandler</code></A>(<code>UrlInterceptHandler</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.UrlInterceptRegistry.setUrlInterceptDisabled_changed(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/UrlInterceptRegistry.html#setUrlInterceptDisabled(boolean)" target="_top"><code>setUrlInterceptDisabled</code></A>(<code>boolean</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.UrlInterceptRegistry.unregisterHandler_changed(android.webkit.UrlInterceptHandler)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/webkit/UrlInterceptRegistry.html#unregisterHandler(android.webkit.UrlInterceptHandler)" target="_top"><code>unregisterHandler</code></A>(<code>UrlInterceptHandler</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.UrlInterceptRegistry.urlInterceptDisabled_changed()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/webkit/UrlInterceptRegistry.html#urlInterceptDisabled()" target="_top"><code>urlInterceptDisabled</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.webkit.WebChromeClient.html b/docs/html/sdk/api_diff/5/changes/android.webkit.WebChromeClient.html
new file mode 100644
index 0000000..f9813e6
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.webkit.WebChromeClient.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.webkit.WebChromeClient
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.webkit.<A HREF="../../../../reference/android/webkit/WebChromeClient.html" target="_top"><font size="+2"><code>WebChromeClient</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebChromeClient.onExceededDatabaseQuota_added(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebChromeClient.html#onExceededDatabaseQuota(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)" target="_top"><code>onExceededDatabaseQuota</code></A>(<code>String,</nobr> String<nobr>,</nobr> long<nobr>,</nobr> long<nobr>,</nobr> long<nobr>,</nobr> QuotaUpdater<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebChromeClient.onGeolocationPermissionsHidePrompt_added()"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebChromeClient.html#onGeolocationPermissionsHidePrompt()" target="_top"><code>onGeolocationPermissionsHidePrompt</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebChromeClient.onGeolocationPermissionsShowPrompt_added(java.lang.String, android.webkit.GeolocationPermissions.Callback)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebChromeClient.html#onGeolocationPermissionsShowPrompt(java.lang.String, android.webkit.GeolocationPermissions.Callback)" target="_top"><code>onGeolocationPermissionsShowPrompt</code></A>(<code>String,</nobr> Callback<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.webkit.WebSettings.html b/docs/html/sdk/api_diff/5/changes/android.webkit.WebSettings.html
new file mode 100644
index 0000000..ba6649d
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.webkit.WebSettings.html
@@ -0,0 +1,185 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.webkit.WebSettings
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.webkit.<A HREF="../../../../reference/android/webkit/WebSettings.html" target="_top"><font size="+2"><code>WebSettings</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebSettings.getDatabaseEnabled_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/webkit/WebSettings.html#getDatabaseEnabled()" target="_top"><code>getDatabaseEnabled</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebSettings.getDatabasePath_added()"></A>
+ <nobr><code>String</code> <A HREF="../../../../reference/android/webkit/WebSettings.html#getDatabasePath()" target="_top"><code>getDatabasePath</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebSettings.setDatabaseEnabled_added(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebSettings.html#setDatabaseEnabled(boolean)" target="_top"><code>setDatabaseEnabled</code></A>(<code>boolean</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebSettings.setDatabasePath_added(java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebSettings.html#setDatabasePath(java.lang.String)" target="_top"><code>setDatabasePath</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebSettings.setGeolocationDatabasePath_added(java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebSettings.html#setGeolocationDatabasePath(java.lang.String)" target="_top"><code>setGeolocationDatabasePath</code></A>(<code>String</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebSettings.setGeolocationEnabled_added(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebSettings.html#setGeolocationEnabled(boolean)" target="_top"><code>setGeolocationEnabled</code></A>(<code>boolean</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebSettings.getUseDoubleTree_changed()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/webkit/WebSettings.html#getUseDoubleTree()" target="_top"><code>getUseDoubleTree</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebSettings.setUseDoubleTree_changed(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebSettings.html#setUseDoubleTree(boolean)" target="_top"><code>setUseDoubleTree</code></A>(<code>boolean</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.webkit.WebView.html b/docs/html/sdk/api_diff/5/changes/android.webkit.WebView.html
new file mode 100644
index 0000000..dffe682
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.webkit.WebView.html
@@ -0,0 +1,150 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.webkit.WebView
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.webkit.<A HREF="../../../../reference/android/webkit/WebView.html" target="_top"><font size="+2"><code>WebView</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebView.postUrl_added(java.lang.String, byte[])"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebView.html#postUrl(java.lang.String, byte[])" target="_top"><code>postUrl</code></A>(<code>String,</nobr> byte[]<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebView.getPluginList_changed()"></A>
+ <nobr><code>PluginList</code> <A HREF="../../../../reference/android/webkit/WebView.html#getPluginList()" target="_top"><code>getPluginList</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebView.refreshPlugins_changed(boolean)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/webkit/WebView.html#refreshPlugins(boolean)" target="_top"><code>refreshPlugins</code></A>(<code>boolean</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+<b>Now deprecated</b>.<br>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.webkit.WebViewClient.html b/docs/html/sdk/api_diff/5/changes/android.webkit.WebViewClient.html
new file mode 100644
index 0000000..0c5378d
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.webkit.WebViewClient.html
@@ -0,0 +1,220 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.webkit.WebViewClient
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.webkit.<A HREF="../../../../reference/android/webkit/WebViewClient.html" target="_top"><font size="+2"><code>WebViewClient</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Fields" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Fields</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_AUTHENTICATION"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_AUTHENTICATION" target="_top"><code>ERROR_AUTHENTICATION</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_BAD_URL"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_BAD_URL" target="_top"><code>ERROR_BAD_URL</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_CONNECT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_CONNECT" target="_top"><code>ERROR_CONNECT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_FAILED_SSL_HANDSHAKE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_FAILED_SSL_HANDSHAKE" target="_top"><code>ERROR_FAILED_SSL_HANDSHAKE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_FILE"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_FILE" target="_top"><code>ERROR_FILE</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_FILE_NOT_FOUND"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_FILE_NOT_FOUND" target="_top"><code>ERROR_FILE_NOT_FOUND</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_HOST_LOOKUP"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_HOST_LOOKUP" target="_top"><code>ERROR_HOST_LOOKUP</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_IO"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_IO" target="_top"><code>ERROR_IO</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_PROXY_AUTHENTICATION"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_PROXY_AUTHENTICATION" target="_top"><code>ERROR_PROXY_AUTHENTICATION</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_REDIRECT_LOOP"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_REDIRECT_LOOP" target="_top"><code>ERROR_REDIRECT_LOOP</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_TIMEOUT"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_TIMEOUT" target="_top"><code>ERROR_TIMEOUT</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_TOO_MANY_REQUESTS"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_TOO_MANY_REQUESTS" target="_top"><code>ERROR_TOO_MANY_REQUESTS</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_UNKNOWN"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_UNKNOWN" target="_top"><code>ERROR_UNKNOWN</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_UNSUPPORTED_AUTH_SCHEME"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_UNSUPPORTED_AUTH_SCHEME" target="_top"><code>ERROR_UNSUPPORTED_AUTH_SCHEME</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit.WebViewClient.ERROR_UNSUPPORTED_SCHEME"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/webkit/WebViewClient.html#ERROR_UNSUPPORTED_SCHEME" target="_top"><code>ERROR_UNSUPPORTED_SCHEME</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.widget.AutoCompleteTextView.html b/docs/html/sdk/api_diff/5/changes/android.widget.AutoCompleteTextView.html
new file mode 100644
index 0000000..50f7996
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.widget.AutoCompleteTextView.html
@@ -0,0 +1,164 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.widget.AutoCompleteTextView
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.widget.<A HREF="../../../../reference/android/widget/AutoCompleteTextView.html" target="_top"><font size="+2"><code>AutoCompleteTextView</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.AutoCompleteTextView.getDropDownBackground_added()"></A>
+ <nobr><code>Drawable</code> <A HREF="../../../../reference/android/widget/AutoCompleteTextView.html#getDropDownBackground()" target="_top"><code>getDropDownBackground</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.AutoCompleteTextView.getDropDownHorizontalOffset_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/widget/AutoCompleteTextView.html#getDropDownHorizontalOffset()" target="_top"><code>getDropDownHorizontalOffset</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.AutoCompleteTextView.getDropDownVerticalOffset_added()"></A>
+ <nobr><code>int</code> <A HREF="../../../../reference/android/widget/AutoCompleteTextView.html#getDropDownVerticalOffset()" target="_top"><code>getDropDownVerticalOffset</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.AutoCompleteTextView.setDropDownBackgroundDrawable_added(android.graphics.drawable.Drawable)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/widget/AutoCompleteTextView.html#setDropDownBackgroundDrawable(android.graphics.drawable.Drawable)" target="_top"><code>setDropDownBackgroundDrawable</code></A>(<code>Drawable</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.AutoCompleteTextView.setDropDownBackgroundResource_added(int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/widget/AutoCompleteTextView.html#setDropDownBackgroundResource(int)" target="_top"><code>setDropDownBackgroundResource</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.AutoCompleteTextView.setDropDownHorizontalOffset_added(int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/widget/AutoCompleteTextView.html#setDropDownHorizontalOffset(int)" target="_top"><code>setDropDownHorizontalOffset</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.AutoCompleteTextView.setDropDownVerticalOffset_added(int)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/widget/AutoCompleteTextView.html#setDropDownVerticalOffset(int)" target="_top"><code>setDropDownVerticalOffset</code></A>(<code>int</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.widget.MediaController.MediaPlayerControl.html b/docs/html/sdk/api_diff/5/changes/android.widget.MediaController.MediaPlayerControl.html
new file mode 100644
index 0000000..a6a964b
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.widget.MediaController.MediaPlayerControl.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.widget.MediaController.MediaPlayerControl
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface android.widget.<A HREF="../../../../reference/android/widget/MediaController.MediaPlayerControl.html" target="_top"><font size="+2"><code>MediaController.MediaPlayerControl</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.MediaController.MediaPlayerControl.canPause_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/widget/MediaController.MediaPlayerControl.html#canPause()" target="_top"><code>canPause</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.MediaController.MediaPlayerControl.canSeekBackward_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/widget/MediaController.MediaPlayerControl.html#canSeekBackward()" target="_top"><code>canSeekBackward</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.MediaController.MediaPlayerControl.canSeekForward_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/widget/MediaController.MediaPlayerControl.html#canSeekForward()" target="_top"><code>canSeekForward</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.widget.SimpleCursorTreeAdapter.html b/docs/html/sdk/api_diff/5/changes/android.widget.SimpleCursorTreeAdapter.html
new file mode 100644
index 0000000..8c5d042
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.widget.SimpleCursorTreeAdapter.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.widget.SimpleCursorTreeAdapter
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.widget.<A HREF="../../../../reference/android/widget/SimpleCursorTreeAdapter.html" target="_top"><font size="+2"><code>SimpleCursorTreeAdapter</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.SimpleCursorTreeAdapter.getViewBinder_added()"></A>
+ <nobr><code>ViewBinder</code> <A HREF="../../../../reference/android/widget/SimpleCursorTreeAdapter.html#getViewBinder()" target="_top"><code>getViewBinder</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.SimpleCursorTreeAdapter.setViewBinder_added(android.widget.SimpleCursorTreeAdapter.ViewBinder)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/widget/SimpleCursorTreeAdapter.html#setViewBinder(android.widget.SimpleCursorTreeAdapter.ViewBinder)" target="_top"><code>setViewBinder</code></A>(<code>ViewBinder</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.SimpleCursorTreeAdapter.setViewText_added(android.widget.TextView, java.lang.String)"></A>
+ <nobr><code>void</code> <A HREF="../../../../reference/android/widget/SimpleCursorTreeAdapter.html#setViewText(android.widget.TextView, java.lang.String)" target="_top"><code>setViewText</code></A>(<code>TextView,</nobr> String<nobr><nobr></code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/android.widget.VideoView.html b/docs/html/sdk/api_diff/5/changes/android.widget.VideoView.html
new file mode 100644
index 0000000..ad72d77
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/android.widget.VideoView.html
@@ -0,0 +1,136 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.widget.VideoView
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class android.widget.<A HREF="../../../../reference/android/widget/VideoView.html" target="_top"><font size="+2"><code>VideoView</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.VideoView.canPause_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/widget/VideoView.html#canPause()" target="_top"><code>canPause</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.VideoView.canSeekBackward_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/widget/VideoView.html#canSeekBackward()" target="_top"><code>canSeekBackward</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget.VideoView.canSeekForward_added()"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/android/widget/VideoView.html#canSeekForward()" target="_top"><code>canSeekForward</code></A>()</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/changes-summary.html b/docs/html/sdk/api_diff/5/changes/changes-summary.html
new file mode 100644
index 0000000..f85de19
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/changes-summary.html
@@ -0,0 +1,387 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Android API Differences Report
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<body class="gc-documentation">
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+ <div id="docTitleContainer">
+<h1>Android API Differences Report</h1>
+<p>This report details the changes in the core Android framework API between two API Level
+specifications. It shows additions, modifications, and removals for packages, classes, methods, and fields.
+The report also includes general statistics that characterize the extent and type of the differences.</p>
+<p>This report is based a comparison of the Android API specifications
+whose API Level identifiers are given in the upper-right corner of this page. It compares a
+newer "to" API to an older "from" API, noting all changes relative to the
+older API. So, for example, API elements marked as removed are no longer present in the "to"
+API specification.</p>
+<p>To navigate the report, use the "Select a Diffs Index" and "Filter the Index"
+controls on the left. The report uses text formatting to indicate <em>interface names</em>,
+<a href= ><code>links to reference documentation</code></a>, and <a href= >links to change
+description</a>. The statistics are accessible from the "Statistics" link in the upper-right corner.</p>
+<p>For more information about the Android framework API and SDK,
+see the <a href="http://developer.android.com/index.html" target="_top">Android Developers site</a>.</p>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Packages" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Packages</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.accounts"></A>
+ <nobr><A HREF="../../../../reference/android/accounts/package-summary.html" target="_top"><code>android.accounts</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.bluetooth"></A>
+ <nobr><A HREF="../../../../reference/android/bluetooth/package-summary.html" target="_top"><code>android.bluetooth</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony.cdma"></A>
+ <nobr><A HREF="../../../../reference/android/telephony/cdma/package-summary.html" target="_top"><code>android.telephony.cdma</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Packages" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Packages</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android"></A>
+ <nobr><A HREF="pkg_android.html">android</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.app"></A>
+ <nobr><A HREF="pkg_android.app.html">android.app</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content"></A>
+ <nobr><A HREF="pkg_android.content.html">android.content</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.pm"></A>
+ <nobr><A HREF="pkg_android.content.pm.html">android.content.pm</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.content.res"></A>
+ <nobr><A HREF="pkg_android.content.res.html">android.content.res</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.database"></A>
+ <nobr><A HREF="pkg_android.database.html">android.database</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.database.sqlite"></A>
+ <nobr><A HREF="pkg_android.database.sqlite.html">android.database.sqlite</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.graphics"></A>
+ <nobr><A HREF="pkg_android.graphics.html">android.graphics</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.graphics.drawable"></A>
+ <nobr><A HREF="pkg_android.graphics.drawable.html">android.graphics.drawable</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.hardware"></A>
+ <nobr><A HREF="pkg_android.hardware.html">android.hardware</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.inputmethodservice"></A>
+ <nobr><A HREF="pkg_android.inputmethodservice.html">android.inputmethodservice</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.location"></A>
+ <nobr><A HREF="pkg_android.location.html">android.location</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.media"></A>
+ <nobr><A HREF="pkg_android.media.html">android.media</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.opengl"></A>
+ <nobr><A HREF="pkg_android.opengl.html">android.opengl</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.os"></A>
+ <nobr><A HREF="pkg_android.os.html">android.os</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.provider"></A>
+ <nobr><A HREF="pkg_android.provider.html">android.provider</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.telephony"></A>
+ <nobr><A HREF="pkg_android.telephony.html">android.telephony</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.test"></A>
+ <nobr><A HREF="pkg_android.test.html">android.test</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.test.mock"></A>
+ <nobr><A HREF="pkg_android.test.mock.html">android.test.mock</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.text"></A>
+ <nobr><A HREF="pkg_android.text.html">android.text</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.text.format"></A>
+ <nobr><A HREF="pkg_android.text.format.html">android.text.format</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.text.style"></A>
+ <nobr><A HREF="pkg_android.text.style.html">android.text.style</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.util"></A>
+ <nobr><A HREF="pkg_android.util.html">android.util</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view"></A>
+ <nobr><A HREF="pkg_android.view.html">android.view</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.view.animation"></A>
+ <nobr><A HREF="pkg_android.view.animation.html">android.view.animation</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.webkit"></A>
+ <nobr><A HREF="pkg_android.webkit.html">android.webkit</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="android.widget"></A>
+ <nobr><A HREF="pkg_android.widget.html">android.widget</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="dalvik.system"></A>
+ <nobr><A HREF="pkg_dalvik.system.html">dalvik.system</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.lang"></A>
+ <nobr><A HREF="pkg_java.lang.html">java.lang</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.net"></A>
+ <nobr><A HREF="pkg_java.net.html">java.net</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.util"></A>
+ <nobr><A HREF="pkg_java.util.html">java.util</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.util.concurrent"></A>
+ <nobr><A HREF="pkg_java.util.concurrent.html">java.util.concurrent</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.util.concurrent.locks"></A>
+ <nobr><A HREF="pkg_java.util.concurrent.locks.html">java.util.concurrent.locks</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<!-- End of API section -->
+<!-- Start of packages section -->
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/classes_index_additions.html b/docs/html/sdk/api_diff/5/changes/classes_index_additions.html
new file mode 100644
index 0000000..84fbce7
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/classes_index_additions.html
@@ -0,0 +1,354 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Class Additions Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Classes" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="classes_index_all.html" class="staysblack">All Classes</a>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<b>Additions</b>
+ <br>
+<A HREF="classes_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_java.util.concurrent.locks.html#AbstractOwnableSynchronizer" class="hiddenlink" target="rightframe"><b>AbstractOwnableSynchronizer</b></A><br>
+<A HREF="pkg_android.content.html#AbstractThreadedSyncAdapter" class="hiddenlink" target="rightframe"><b>AbstractThreadedSyncAdapter</b></A><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.provider.html#ContactsContract" class="hiddenlink" target="rightframe"><b>ContactsContract</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.AggregationExceptions" class="hiddenlink" target="rightframe"><b>ContactsContract.AggregationExceptions</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.BaseSyncColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.BaseSyncColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.BaseTypes" class="hiddenlink" target="rightframe"><b><i>ContactsContract.CommonDataKinds.BaseTypes</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.CommonColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.CommonDataKinds.CommonColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Email" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Email</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Event" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Event</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.GroupMembership" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.GroupMembership</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Im" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Im</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Nickname" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Nickname</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Note" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Note</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Organization" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Organization</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Phone" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Phone</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Photo" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Photo</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Relation" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Relation</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.StructuredName" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.StructuredName</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.StructuredPostal" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.StructuredPostal</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Website" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Website</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.ContactOptionsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.ContactOptionsColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts.AggregationSuggestions" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts.AggregationSuggestions</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts.Data" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts.Data</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts.Photo" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts.Photo</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.ContactsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.ContactsColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.ContactStatusColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.ContactStatusColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Data" class="hiddenlink" target="rightframe"><b>ContactsContract.Data</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.DataColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.DataColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.DataColumnsWithJoins" class="hiddenlink" target="rightframe"><b><i>ContactsContract.DataColumnsWithJoins</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Groups" class="hiddenlink" target="rightframe"><b>ContactsContract.Groups</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.GroupsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.GroupsColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Intents" class="hiddenlink" target="rightframe"><b>ContactsContract.Intents</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Intents.Insert" class="hiddenlink" target="rightframe"><b>ContactsContract.Intents.Insert</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.PhoneLookup" class="hiddenlink" target="rightframe"><b>ContactsContract.PhoneLookup</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.PhoneLookupColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.PhoneLookupColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Presence" class="hiddenlink" target="rightframe"><b>ContactsContract.Presence</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.PresenceColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.PresenceColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.QuickContact" class="hiddenlink" target="rightframe"><b>ContactsContract.QuickContact</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.RawContacts" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContacts</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.RawContacts.Data" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContacts.Data</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.RawContacts.Entity" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContacts.Entity</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.RawContactsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.RawContactsColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.RawContactsEntity" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContactsEntity</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Settings" class="hiddenlink" target="rightframe"><b>ContactsContract.Settings</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.SettingsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.SettingsColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.StatusColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.StatusColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.StatusUpdates" class="hiddenlink" target="rightframe"><b>ContactsContract.StatusUpdates</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.SyncColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.SyncColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.SyncState" class="hiddenlink" target="rightframe"><b>ContactsContract.SyncState</b></A><br>
+<A HREF="pkg_android.content.html#ContentProviderClient" class="hiddenlink" target="rightframe"><b>ContentProviderClient</b></A><br>
+<A HREF="pkg_android.content.html#ContentProviderOperation" class="hiddenlink" target="rightframe"><b>ContentProviderOperation</b></A><br>
+<A HREF="pkg_android.content.html#ContentProviderOperation.Builder" class="hiddenlink" target="rightframe"><b>ContentProviderOperation.Builder</b></A><br>
+<A HREF="pkg_android.content.html#ContentProviderResult" class="hiddenlink" target="rightframe"><b>ContentProviderResult</b></A><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.media.html#ExifInterface" class="hiddenlink" target="rightframe"><b>ExifInterface</b></A><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.content.pm.html#FeatureInfo" class="hiddenlink" target="rightframe"><b>FeatureInfo</b></A><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.webkit.html#GeolocationPermissions" class="hiddenlink" target="rightframe"><b>GeolocationPermissions</b></A><br>
+<A HREF="pkg_android.webkit.html#GeolocationPermissions.Callback" class="hiddenlink" target="rightframe"><b><i>GeolocationPermissions.Callback</i></b></A><br>
+<A HREF="pkg_android.opengl.html#GLSurfaceView.EGLContextFactory" class="hiddenlink" target="rightframe"><b><i>GLSurfaceView.EGLContextFactory</i></b></A><br>
+<A HREF="pkg_android.opengl.html#GLSurfaceView.EGLWindowSurfaceFactory" class="hiddenlink" target="rightframe"><b><i>GLSurfaceView.EGLWindowSurfaceFactory</i></b></A><br>
+<A HREF="pkg_android.location.html#GpsStatus.NmeaListener" class="hiddenlink" target="rightframe"><b><i>GpsStatus.NmeaListener</i></b></A><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.view.html#KeyEvent.DispatcherState" class="hiddenlink" target="rightframe"><b>KeyEvent.DispatcherState</b></A><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.content.pm.html#LabeledIntent" class="hiddenlink" target="rightframe"><b>LabeledIntent</b></A><br>
+<A HREF="pkg_android.text.style.html#LineHeightSpan.WithDensity" class="hiddenlink" target="rightframe"><b><i>LineHeightSpan.WithDensity</i></b></A><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.provider.html#MediaStore.Video.Thumbnails" class="hiddenlink" target="rightframe"><b>MediaStore.Video.Thumbnails</b></A><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.content.html#OperationApplicationException" class="hiddenlink" target="rightframe"><b>OperationApplicationException</b></A><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.util.html#Pair" class="hiddenlink" target="rightframe"><b>Pair</b></A><br>
+<A HREF="pkg_android.os.html#ParcelUuid" class="hiddenlink" target="rightframe"><b>ParcelUuid</b></A><br>
+<A HREF="pkg_android.webkit.html#PluginStub" class="hiddenlink" target="rightframe"><b><i>PluginStub</i></b></A><br>
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.widget.html#QuickContactBadge" class="hiddenlink" target="rightframe"><b>QuickContactBadge</b></A><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.widget.html#SimpleCursorTreeAdapter.ViewBinder" class="hiddenlink" target="rightframe"><b><i>SimpleCursorTreeAdapter.ViewBinder</i></b></A><br>
+<A HREF="pkg_android.database.sqlite.html#SQLiteTransactionListener" class="hiddenlink" target="rightframe"><b><i>SQLiteTransactionListener</i></b></A><br>
+<A HREF="pkg_android.content.html#SyncAdapterType" class="hiddenlink" target="rightframe"><b>SyncAdapterType</b></A><br>
+<A HREF="pkg_android.content.html#SyncContext" class="hiddenlink" target="rightframe"><b>SyncContext</b></A><br>
+<A HREF="pkg_android.content.html#SyncResult" class="hiddenlink" target="rightframe"><b>SyncResult</b></A><br>
+<A HREF="pkg_android.provider.html#SyncStateContract" class="hiddenlink" target="rightframe"><b>SyncStateContract</b></A><br>
+<A HREF="pkg_android.provider.html#SyncStateContract.Columns" class="hiddenlink" target="rightframe"><b><i>SyncStateContract.Columns</i></b></A><br>
+<A HREF="pkg_android.provider.html#SyncStateContract.Constants" class="hiddenlink" target="rightframe"><b>SyncStateContract.Constants</b></A><br>
+<A HREF="pkg_android.provider.html#SyncStateContract.Helpers" class="hiddenlink" target="rightframe"><b>SyncStateContract.Helpers</b></A><br>
+<A HREF="pkg_android.content.html#SyncStats" class="hiddenlink" target="rightframe"><b>SyncStats</b></A><br>
+<A HREF="pkg_android.content.html#SyncStatusObserver" class="hiddenlink" target="rightframe"><b><i>SyncStatusObserver</i></b></A><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.app.html#WallpaperManager" class="hiddenlink" target="rightframe"><b>WallpaperManager</b></A><br>
+<A HREF="pkg_android.webkit.html#WebStorage" class="hiddenlink" target="rightframe"><b>WebStorage</b></A><br>
+<A HREF="pkg_android.webkit.html#WebStorage.QuotaUpdater" class="hiddenlink" target="rightframe"><b><i>WebStorage.QuotaUpdater</i></b></A><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/classes_index_all.html b/docs/html/sdk/api_diff/5/changes/classes_index_all.html
new file mode 100644
index 0000000..21f10dc
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/classes_index_all.html
@@ -0,0 +1,876 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Class Differences Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Classes" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<b>Classes</b>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<A HREF="classes_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<A HREF="classes_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.text.style.AbsoluteSizeSpan.html" class="hiddenlink" target="rightframe">AbsoluteSizeSpan</A><br>
+<A HREF="android.inputmethodservice.AbstractInputMethodService.html" class="hiddenlink" target="rightframe">AbstractInputMethodService</A><br>
+<A HREF="pkg_java.util.concurrent.locks.html#AbstractOwnableSynchronizer" class="hiddenlink" target="rightframe"><b>AbstractOwnableSynchronizer</b></A><br>
+<A HREF="pkg_android.content.html#AbstractThreadedSyncAdapter" class="hiddenlink" target="rightframe"><b>AbstractThreadedSyncAdapter</b></A><br>
+<A HREF="android.database.AbstractWindowedCursor.html" class="hiddenlink" target="rightframe">AbstractWindowedCursor</A><br>
+<A HREF="android.app.Activity.html" class="hiddenlink" target="rightframe">Activity</A><br>
+<A HREF="android.content.pm.ActivityInfo.html" class="hiddenlink" target="rightframe">ActivityInfo</A><br>
+<A HREF="android.app.ActivityManager.html" class="hiddenlink" target="rightframe">ActivityManager</A><br>
+<A HREF="android.app.ActivityManager.RunningAppProcessInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningAppProcessInfo</A><br>
+<A HREF="android.app.ActivityManager.RunningServiceInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningServiceInfo</A><br>
+<A HREF="dalvik.system.AllocationLimitError.html" class="hiddenlink" target="rightframe">AllocationLimitError</A><br>
+<A HREF="android.test.AndroidTestRunner.html" class="hiddenlink" target="rightframe">AndroidTestRunner</A><br>
+<A HREF="android.view.animation.Animation.html" class="hiddenlink" target="rightframe">Animation</A><br>
+<A HREF="android.media.AudioFormat.html" class="hiddenlink" target="rightframe">AudioFormat</A><br>
+<A HREF="android.media.AudioManager.html" class="hiddenlink" target="rightframe">AudioManager</A><br>
+<A HREF="android.widget.AutoCompleteTextView.html" class="hiddenlink" target="rightframe">AutoCompleteTextView</A><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.os.BatteryManager.html" class="hiddenlink" target="rightframe">BatteryManager</A><br>
+<A HREF="android.graphics.drawable.BitmapDrawable.html" class="hiddenlink" target="rightframe">BitmapDrawable</A><br>
+<A HREF="java.util.concurrent.BlockingQueue.html" class="hiddenlink" target="rightframe"><i>BlockingQueue</i></A><br>
+<A HREF="android.content.BroadcastReceiver.html" class="hiddenlink" target="rightframe">BroadcastReceiver</A><br>
+<A HREF="android.os.Build.VERSION_CODES.html" class="hiddenlink" target="rightframe">Build.VERSION_CODES</A><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.webkit.CallbackProxy.html" class="hiddenlink" target="rightframe">CallbackProxy</A><br>
+<A HREF="android.hardware.Camera.html" class="hiddenlink" target="rightframe">Camera</A><br>
+<A HREF="android.hardware.Camera.Parameters.html" class="hiddenlink" target="rightframe">Camera.Parameters</A><br>
+<A HREF="android.content.res.Configuration.html" class="hiddenlink" target="rightframe">Configuration</A><br>
+<A HREF="android.provider.Contacts.html" class="hiddenlink" target="rightframe">Contacts</A><br>
+<A HREF="android.provider.Contacts.ContactMethods.html" class="hiddenlink" target="rightframe">Contacts.ContactMethods</A><br>
+<A HREF="android.provider.Contacts.ContactMethodsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.ContactMethodsColumns</i></A><br>
+<A HREF="android.provider.Contacts.Extensions.html" class="hiddenlink" target="rightframe">Contacts.Extensions</A><br>
+<A HREF="android.provider.Contacts.ExtensionsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.ExtensionsColumns</i></A><br>
+<A HREF="android.provider.Contacts.GroupMembership.html" class="hiddenlink" target="rightframe">Contacts.GroupMembership</A><br>
+<A HREF="android.provider.Contacts.Groups.html" class="hiddenlink" target="rightframe">Contacts.Groups</A><br>
+<A HREF="android.provider.Contacts.GroupsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.GroupsColumns</i></A><br>
+<A HREF="android.provider.Contacts.Intents.html" class="hiddenlink" target="rightframe">Contacts.Intents</A><br>
+<A HREF="android.provider.Contacts.Intents.Insert.html" class="hiddenlink" target="rightframe">Contacts.Intents.Insert</A><br>
+<A HREF="android.provider.Contacts.Intents.UI.html" class="hiddenlink" target="rightframe">Contacts.Intents.UI</A><br>
+<A HREF="android.provider.Contacts.OrganizationColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.OrganizationColumns</i></A><br>
+<A HREF="android.provider.Contacts.Organizations.html" class="hiddenlink" target="rightframe">Contacts.Organizations</A><br>
+<A HREF="android.provider.Contacts.People.html" class="hiddenlink" target="rightframe">Contacts.People</A><br>
+<A HREF="android.provider.Contacts.People.ContactMethods.html" class="hiddenlink" target="rightframe">Contacts.People.ContactMethods</A><br>
+<A HREF="android.provider.Contacts.People.Extensions.html" class="hiddenlink" target="rightframe">Contacts.People.Extensions</A><br>
+<A HREF="android.provider.Contacts.People.Phones.html" class="hiddenlink" target="rightframe">Contacts.People.Phones</A><br>
+<A HREF="android.provider.Contacts.PeopleColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PeopleColumns</i></A><br>
+<A HREF="android.provider.Contacts.Phones.html" class="hiddenlink" target="rightframe">Contacts.Phones</A><br>
+<A HREF="android.provider.Contacts.PhonesColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PhonesColumns</i></A><br>
+<A HREF="android.provider.Contacts.Photos.html" class="hiddenlink" target="rightframe">Contacts.Photos</A><br>
+<A HREF="android.provider.Contacts.PhotosColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PhotosColumns</i></A><br>
+<A HREF="android.provider.Contacts.PresenceColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PresenceColumns</i></A><br>
+<A HREF="android.provider.Contacts.Settings.html" class="hiddenlink" target="rightframe">Contacts.Settings</A><br>
+<A HREF="android.provider.Contacts.SettingsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.SettingsColumns</i></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract" class="hiddenlink" target="rightframe"><b>ContactsContract</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.AggregationExceptions" class="hiddenlink" target="rightframe"><b>ContactsContract.AggregationExceptions</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.BaseSyncColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.BaseSyncColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.BaseTypes" class="hiddenlink" target="rightframe"><b><i>ContactsContract.CommonDataKinds.BaseTypes</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.CommonColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.CommonDataKinds.CommonColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Email" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Email</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Event" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Event</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.GroupMembership" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.GroupMembership</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Im" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Im</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Nickname" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Nickname</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Note" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Note</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Organization" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Organization</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Phone" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Phone</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Photo" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Photo</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Relation" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Relation</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.StructuredName" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.StructuredName</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.StructuredPostal" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.StructuredPostal</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.CommonDataKinds.Website" class="hiddenlink" target="rightframe"><b>ContactsContract.CommonDataKinds.Website</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.ContactOptionsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.ContactOptionsColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts.AggregationSuggestions" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts.AggregationSuggestions</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts.Data" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts.Data</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Contacts.Photo" class="hiddenlink" target="rightframe"><b>ContactsContract.Contacts.Photo</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.ContactsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.ContactsColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.ContactStatusColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.ContactStatusColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Data" class="hiddenlink" target="rightframe"><b>ContactsContract.Data</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.DataColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.DataColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.DataColumnsWithJoins" class="hiddenlink" target="rightframe"><b><i>ContactsContract.DataColumnsWithJoins</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Groups" class="hiddenlink" target="rightframe"><b>ContactsContract.Groups</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.GroupsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.GroupsColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Intents" class="hiddenlink" target="rightframe"><b>ContactsContract.Intents</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Intents.Insert" class="hiddenlink" target="rightframe"><b>ContactsContract.Intents.Insert</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.PhoneLookup" class="hiddenlink" target="rightframe"><b>ContactsContract.PhoneLookup</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.PhoneLookupColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.PhoneLookupColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Presence" class="hiddenlink" target="rightframe"><b>ContactsContract.Presence</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.PresenceColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.PresenceColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.QuickContact" class="hiddenlink" target="rightframe"><b>ContactsContract.QuickContact</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.RawContacts" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContacts</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.RawContacts.Data" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContacts.Data</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.RawContacts.Entity" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContacts.Entity</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.RawContactsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.RawContactsColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.RawContactsEntity" class="hiddenlink" target="rightframe"><b>ContactsContract.RawContactsEntity</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.Settings" class="hiddenlink" target="rightframe"><b>ContactsContract.Settings</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.SettingsColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.SettingsColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.StatusColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.StatusColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.StatusUpdates" class="hiddenlink" target="rightframe"><b>ContactsContract.StatusUpdates</b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.SyncColumns" class="hiddenlink" target="rightframe"><b><i>ContactsContract.SyncColumns</i></b></A><br>
+<A HREF="pkg_android.provider.html#ContactsContract.SyncState" class="hiddenlink" target="rightframe"><b>ContactsContract.SyncState</b></A><br>
+<A HREF="android.content.ContentProvider.html" class="hiddenlink" target="rightframe">ContentProvider</A><br>
+<A HREF="pkg_android.content.html#ContentProviderClient" class="hiddenlink" target="rightframe"><b>ContentProviderClient</b></A><br>
+<A HREF="pkg_android.content.html#ContentProviderOperation" class="hiddenlink" target="rightframe"><b>ContentProviderOperation</b></A><br>
+<A HREF="pkg_android.content.html#ContentProviderOperation.Builder" class="hiddenlink" target="rightframe"><b>ContentProviderOperation.Builder</b></A><br>
+<A HREF="pkg_android.content.html#ContentProviderResult" class="hiddenlink" target="rightframe"><b>ContentProviderResult</b></A><br>
+<A HREF="android.content.ContentResolver.html" class="hiddenlink" target="rightframe">ContentResolver</A><br>
+<A HREF="android.content.Context.html" class="hiddenlink" target="rightframe">Context</A><br>
+<A HREF="android.content.ContextWrapper.html" class="hiddenlink" target="rightframe">ContextWrapper</A><br>
+<A HREF="android.database.CursorWindow.html" class="hiddenlink" target="rightframe">CursorWindow</A><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.database.DatabaseUtils.html" class="hiddenlink" target="rightframe">DatabaseUtils</A><br>
+<A HREF="java.util.Date.html" class="hiddenlink" target="rightframe">Date</A><br>
+<A HREF="android.text.format.DateUtils.html" class="hiddenlink" target="rightframe">DateUtils</A><br>
+<A HREF="android.os.Debug.MemoryInfo.html" class="hiddenlink" target="rightframe">Debug.MemoryInfo</A><br>
+<A HREF="android.app.Dialog.html" class="hiddenlink" target="rightframe">Dialog</A><br>
+<A HREF="android.graphics.drawable.Drawable.html" class="hiddenlink" target="rightframe">Drawable</A><br>
+<A HREF="android.graphics.drawable.Drawable.ConstantState.html" class="hiddenlink" target="rightframe">Drawable.ConstantState</A><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.media.html#ExifInterface" class="hiddenlink" target="rightframe"><b>ExifInterface</b></A><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.content.pm.html#FeatureInfo" class="hiddenlink" target="rightframe"><b>FeatureInfo</b></A><br>
+<A HREF="android.text.format.Formatter.html" class="hiddenlink" target="rightframe">Formatter</A><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.webkit.html#GeolocationPermissions" class="hiddenlink" target="rightframe"><b>GeolocationPermissions</b></A><br>
+<A HREF="pkg_android.webkit.html#GeolocationPermissions.Callback" class="hiddenlink" target="rightframe"><b><i>GeolocationPermissions.Callback</i></b></A><br>
+<A HREF="android.opengl.GLSurfaceView.html" class="hiddenlink" target="rightframe">GLSurfaceView</A><br>
+<A HREF="pkg_android.opengl.html#GLSurfaceView.EGLContextFactory" class="hiddenlink" target="rightframe"><b><i>GLSurfaceView.EGLContextFactory</i></b></A><br>
+<A HREF="pkg_android.opengl.html#GLSurfaceView.EGLWindowSurfaceFactory" class="hiddenlink" target="rightframe"><b><i>GLSurfaceView.EGLWindowSurfaceFactory</i></b></A><br>
+<A HREF="pkg_android.location.html#GpsStatus.NmeaListener" class="hiddenlink" target="rightframe"><b><i>GpsStatus.NmeaListener</i></b></A><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.os.HandlerThread.html" class="hiddenlink" target="rightframe">HandlerThread</A><br>
+<A HREF="android.view.HapticFeedbackConstants.html" class="hiddenlink" target="rightframe">HapticFeedbackConstants</A><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.text.style.ImageSpan.html" class="hiddenlink" target="rightframe">ImageSpan</A><br>
+<A HREF="android.inputmethodservice.InputMethodService.html" class="hiddenlink" target="rightframe">InputMethodService</A><br>
+<A HREF="android.text.InputType.html" class="hiddenlink" target="rightframe"><i>InputType</i></A><br>
+<A HREF="android.test.InstrumentationTestCase.html" class="hiddenlink" target="rightframe">InstrumentationTestCase</A><br>
+<A HREF="android.content.Intent.html" class="hiddenlink" target="rightframe">Intent</A><br>
+<A HREF="android.app.IntentService.html" class="hiddenlink" target="rightframe">IntentService</A><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.view.KeyEvent.html" class="hiddenlink" target="rightframe">KeyEvent</A><br>
+<A HREF="android.view.KeyEvent.Callback.html" class="hiddenlink" target="rightframe"><i>KeyEvent.Callback</i></A><br>
+<A HREF="pkg_android.view.html#KeyEvent.DispatcherState" class="hiddenlink" target="rightframe"><b>KeyEvent.DispatcherState</b></A><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.content.pm.html#LabeledIntent" class="hiddenlink" target="rightframe"><b>LabeledIntent</b></A><br>
+<A HREF="android.app.LauncherActivity.html" class="hiddenlink" target="rightframe">LauncherActivity</A><br>
+<A HREF="pkg_android.text.style.html#LineHeightSpan.WithDensity" class="hiddenlink" target="rightframe"><b><i>LineHeightSpan.WithDensity</i></b></A><br>
+<A HREF="android.location.LocationManager.html" class="hiddenlink" target="rightframe">LocationManager</A><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.Manifest.permission.html" class="hiddenlink" target="rightframe">Manifest.permission</A><br>
+<A HREF="android.widget.MediaController.MediaPlayerControl.html" class="hiddenlink" target="rightframe"><i>MediaController.MediaPlayerControl</i></A><br>
+<A HREF="android.media.MediaPlayer.html" class="hiddenlink" target="rightframe">MediaPlayer</A><br>
+<A HREF="android.provider.MediaStore.Images.Thumbnails.html" class="hiddenlink" target="rightframe">MediaStore.Images.Thumbnails</A><br>
+<A HREF="pkg_android.provider.html#MediaStore.Video.Thumbnails" class="hiddenlink" target="rightframe"><b>MediaStore.Video.Thumbnails</b></A><br>
+<A HREF="android.test.mock.MockContext.html" class="hiddenlink" target="rightframe">MockContext</A><br>
+<A HREF="android.test.mock.MockPackageManager.html" class="hiddenlink" target="rightframe">MockPackageManager</A><br>
+<A HREF="android.view.MotionEvent.html" class="hiddenlink" target="rightframe">MotionEvent</A><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.telephony.NeighboringCellInfo.html" class="hiddenlink" target="rightframe">NeighboringCellInfo</A><br>
+<A HREF="android.graphics.drawable.NinePatchDrawable.html" class="hiddenlink" target="rightframe">NinePatchDrawable</A><br>
+<A HREF="android.app.Notification.html" class="hiddenlink" target="rightframe">Notification</A><br>
+<A HREF="android.app.NotificationManager.html" class="hiddenlink" target="rightframe">NotificationManager</A><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.content.html#OperationApplicationException" class="hiddenlink" target="rightframe"><b>OperationApplicationException</b></A><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.content.pm.PackageInfo.html" class="hiddenlink" target="rightframe">PackageInfo</A><br>
+<A HREF="android.content.pm.PackageManager.html" class="hiddenlink" target="rightframe">PackageManager</A><br>
+<A HREF="pkg_android.util.html#Pair" class="hiddenlink" target="rightframe"><b>Pair</b></A><br>
+<A HREF="pkg_android.os.html#ParcelUuid" class="hiddenlink" target="rightframe"><b>ParcelUuid</b></A><br>
+<A HREF="android.telephony.PhoneNumberUtils.html" class="hiddenlink" target="rightframe">PhoneNumberUtils</A><br>
+<A HREF="android.telephony.PhoneStateListener.html" class="hiddenlink" target="rightframe">PhoneStateListener</A><br>
+<A HREF="android.graphics.PixelFormat.html" class="hiddenlink" target="rightframe">PixelFormat</A><br>
+<A HREF="android.webkit.Plugin.html" class="hiddenlink" target="rightframe">Plugin</A><br>
+<A HREF="android.webkit.PluginData.html" class="hiddenlink" target="rightframe">PluginData</A><br>
+<A HREF="android.webkit.PluginList.html" class="hiddenlink" target="rightframe">PluginList</A><br>
+<A HREF="pkg_android.webkit.html#PluginStub" class="hiddenlink" target="rightframe"><b><i>PluginStub</i></b></A><br>
+<A HREF="dalvik.system.PotentialDeadlockError.html" class="hiddenlink" target="rightframe">PotentialDeadlockError</A><br>
+<A HREF="android.content.pm.ProviderInfo.html" class="hiddenlink" target="rightframe">ProviderInfo</A><br>
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.widget.html#QuickContactBadge" class="hiddenlink" target="rightframe"><b>QuickContactBadge</b></A><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.R.attr.html" class="hiddenlink" target="rightframe">R.attr</A><br>
+<A HREF="android.R.drawable.html" class="hiddenlink" target="rightframe">R.drawable</A><br>
+<A HREF="android.R.style.html" class="hiddenlink" target="rightframe">R.style</A><br>
+<A HREF="android.content.pm.ResolveInfo.html" class="hiddenlink" target="rightframe">ResolveInfo</A><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.app.SearchManager.html" class="hiddenlink" target="rightframe">SearchManager</A><br>
+<A HREF="android.app.Service.html" class="hiddenlink" target="rightframe">Service</A><br>
+<A HREF="android.content.pm.ServiceInfo.html" class="hiddenlink" target="rightframe">ServiceInfo</A><br>
+<A HREF="android.provider.Settings.html" class="hiddenlink" target="rightframe">Settings</A><br>
+<A HREF="android.provider.Settings.System.html" class="hiddenlink" target="rightframe">Settings.System</A><br>
+<A HREF="android.widget.SimpleCursorTreeAdapter.html" class="hiddenlink" target="rightframe">SimpleCursorTreeAdapter</A><br>
+<A HREF="pkg_android.widget.html#SimpleCursorTreeAdapter.ViewBinder" class="hiddenlink" target="rightframe"><b><i>SimpleCursorTreeAdapter.ViewBinder</i></b></A><br>
+<A HREF="java.net.Socket.html" class="hiddenlink" target="rightframe">Socket</A><br>
+<A HREF="android.database.sqlite.SQLiteDatabase.html" class="hiddenlink" target="rightframe">SQLiteDatabase</A><br>
+<A HREF="pkg_android.database.sqlite.html#SQLiteTransactionListener" class="hiddenlink" target="rightframe"><b><i>SQLiteTransactionListener</i></b></A><br>
+<A HREF="dalvik.system.StaleDexCacheError.html" class="hiddenlink" target="rightframe">StaleDexCacheError</A><br>
+<A HREF="java.lang.String.html" class="hiddenlink" target="rightframe">String</A><br>
+<A HREF="android.view.Surface.html" class="hiddenlink" target="rightframe">Surface</A><br>
+<A HREF="android.view.SurfaceHolder.html" class="hiddenlink" target="rightframe"><i>SurfaceHolder</i></A><br>
+<A HREF="android.view.SurfaceView.html" class="hiddenlink" target="rightframe">SurfaceView</A><br>
+<A HREF="pkg_android.content.html#SyncAdapterType" class="hiddenlink" target="rightframe"><b>SyncAdapterType</b></A><br>
+<A HREF="pkg_android.content.html#SyncContext" class="hiddenlink" target="rightframe"><b>SyncContext</b></A><br>
+<A HREF="pkg_android.content.html#SyncResult" class="hiddenlink" target="rightframe"><b>SyncResult</b></A><br>
+<A HREF="pkg_android.provider.html#SyncStateContract" class="hiddenlink" target="rightframe"><b>SyncStateContract</b></A><br>
+<A HREF="pkg_android.provider.html#SyncStateContract.Columns" class="hiddenlink" target="rightframe"><b><i>SyncStateContract.Columns</i></b></A><br>
+<A HREF="pkg_android.provider.html#SyncStateContract.Constants" class="hiddenlink" target="rightframe"><b>SyncStateContract.Constants</b></A><br>
+<A HREF="pkg_android.provider.html#SyncStateContract.Helpers" class="hiddenlink" target="rightframe"><b>SyncStateContract.Helpers</b></A><br>
+<A HREF="pkg_android.content.html#SyncStats" class="hiddenlink" target="rightframe"><b>SyncStats</b></A><br>
+<A HREF="pkg_android.content.html#SyncStatusObserver" class="hiddenlink" target="rightframe"><b><i>SyncStatusObserver</i></b></A><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.telephony.TelephonyManager.html" class="hiddenlink" target="rightframe">TelephonyManager</A><br>
+<A HREF="dalvik.system.TemporaryDirectory.html" class="hiddenlink" target="rightframe">TemporaryDirectory</A><br>
+<A HREF="android.text.TextPaint.html" class="hiddenlink" target="rightframe">TextPaint</A><br>
+<A HREF="android.media.ToneGenerator.html" class="hiddenlink" target="rightframe">ToneGenerator</A><br>
+<A HREF="dalvik.system.TouchDex.html" class="hiddenlink" target="rightframe">TouchDex</A><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.webkit.UrlInterceptHandler.html" class="hiddenlink" target="rightframe"><i>UrlInterceptHandler</i></A><br>
+<A HREF="android.webkit.UrlInterceptRegistry.html" class="hiddenlink" target="rightframe">UrlInterceptRegistry</A><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.widget.VideoView.html" class="hiddenlink" target="rightframe">VideoView</A><br>
+<A HREF="android.view.View.html" class="hiddenlink" target="rightframe">View</A><br>
+<A HREF="android.view.ViewConfiguration.html" class="hiddenlink" target="rightframe">ViewConfiguration</A><br>
+<A HREF="dalvik.system.VMDebug.html" class="hiddenlink" target="rightframe">VMDebug</A><br>
+<A HREF="dalvik.system.VMRuntime.html" class="hiddenlink" target="rightframe">VMRuntime</A><br>
+<A HREF="dalvik.system.VMStack.html" class="hiddenlink" target="rightframe">VMStack</A><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="pkg_android.app.html#WallpaperManager" class="hiddenlink" target="rightframe"><b>WallpaperManager</b></A><br>
+<A HREF="android.webkit.WebChromeClient.html" class="hiddenlink" target="rightframe">WebChromeClient</A><br>
+<A HREF="android.webkit.WebSettings.html" class="hiddenlink" target="rightframe">WebSettings</A><br>
+<A HREF="pkg_android.webkit.html#WebStorage" class="hiddenlink" target="rightframe"><b>WebStorage</b></A><br>
+<A HREF="pkg_android.webkit.html#WebStorage.QuotaUpdater" class="hiddenlink" target="rightframe"><b><i>WebStorage.QuotaUpdater</i></b></A><br>
+<A HREF="android.webkit.WebView.html" class="hiddenlink" target="rightframe">WebView</A><br>
+<A HREF="android.webkit.WebViewClient.html" class="hiddenlink" target="rightframe">WebViewClient</A><br>
+<A HREF="android.view.Window.Callback.html" class="hiddenlink" target="rightframe"><i>Window.Callback</i></A><br>
+<A HREF="android.view.WindowManager.LayoutParams.html" class="hiddenlink" target="rightframe">WindowManager.LayoutParams</A><br>
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="dalvik.system.Zygote.html" class="hiddenlink" target="rightframe">Zygote</A><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/classes_index_changes.html b/docs/html/sdk/api_diff/5/changes/classes_index_changes.html
new file mode 100644
index 0000000..dd4d643
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/classes_index_changes.html
@@ -0,0 +1,653 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Class Changes Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Classes" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="classes_index_all.html" class="staysblack">All Classes</a>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<A HREF="classes_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<b>Changes</b>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.text.style.AbsoluteSizeSpan.html" class="hiddenlink" target="rightframe">AbsoluteSizeSpan</A><br>
+<A HREF="android.inputmethodservice.AbstractInputMethodService.html" class="hiddenlink" target="rightframe">AbstractInputMethodService</A><br>
+<A HREF="android.database.AbstractWindowedCursor.html" class="hiddenlink" target="rightframe">AbstractWindowedCursor</A><br>
+<A HREF="android.app.Activity.html" class="hiddenlink" target="rightframe">Activity</A><br>
+<A HREF="android.content.pm.ActivityInfo.html" class="hiddenlink" target="rightframe">ActivityInfo</A><br>
+<A HREF="android.app.ActivityManager.html" class="hiddenlink" target="rightframe">ActivityManager</A><br>
+<A HREF="android.app.ActivityManager.RunningAppProcessInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningAppProcessInfo</A><br>
+<A HREF="android.app.ActivityManager.RunningServiceInfo.html" class="hiddenlink" target="rightframe">ActivityManager.RunningServiceInfo</A><br>
+<A HREF="dalvik.system.AllocationLimitError.html" class="hiddenlink" target="rightframe">AllocationLimitError</A><br>
+<A HREF="android.test.AndroidTestRunner.html" class="hiddenlink" target="rightframe">AndroidTestRunner</A><br>
+<A HREF="android.view.animation.Animation.html" class="hiddenlink" target="rightframe">Animation</A><br>
+<A HREF="android.media.AudioFormat.html" class="hiddenlink" target="rightframe">AudioFormat</A><br>
+<A HREF="android.media.AudioManager.html" class="hiddenlink" target="rightframe">AudioManager</A><br>
+<A HREF="android.widget.AutoCompleteTextView.html" class="hiddenlink" target="rightframe">AutoCompleteTextView</A><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.os.BatteryManager.html" class="hiddenlink" target="rightframe">BatteryManager</A><br>
+<A HREF="android.graphics.drawable.BitmapDrawable.html" class="hiddenlink" target="rightframe">BitmapDrawable</A><br>
+<A HREF="java.util.concurrent.BlockingQueue.html" class="hiddenlink" target="rightframe"><i>BlockingQueue</i></A><br>
+<A HREF="android.content.BroadcastReceiver.html" class="hiddenlink" target="rightframe">BroadcastReceiver</A><br>
+<A HREF="android.os.Build.VERSION_CODES.html" class="hiddenlink" target="rightframe">Build.VERSION_CODES</A><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.webkit.CallbackProxy.html" class="hiddenlink" target="rightframe">CallbackProxy</A><br>
+<A HREF="android.hardware.Camera.html" class="hiddenlink" target="rightframe">Camera</A><br>
+<A HREF="android.hardware.Camera.Parameters.html" class="hiddenlink" target="rightframe">Camera.Parameters</A><br>
+<A HREF="android.content.res.Configuration.html" class="hiddenlink" target="rightframe">Configuration</A><br>
+<A HREF="android.provider.Contacts.html" class="hiddenlink" target="rightframe">Contacts</A><br>
+<A HREF="android.provider.Contacts.ContactMethods.html" class="hiddenlink" target="rightframe">Contacts.ContactMethods</A><br>
+<A HREF="android.provider.Contacts.ContactMethodsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.ContactMethodsColumns</i></A><br>
+<A HREF="android.provider.Contacts.Extensions.html" class="hiddenlink" target="rightframe">Contacts.Extensions</A><br>
+<A HREF="android.provider.Contacts.ExtensionsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.ExtensionsColumns</i></A><br>
+<A HREF="android.provider.Contacts.GroupMembership.html" class="hiddenlink" target="rightframe">Contacts.GroupMembership</A><br>
+<A HREF="android.provider.Contacts.Groups.html" class="hiddenlink" target="rightframe">Contacts.Groups</A><br>
+<A HREF="android.provider.Contacts.GroupsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.GroupsColumns</i></A><br>
+<A HREF="android.provider.Contacts.Intents.html" class="hiddenlink" target="rightframe">Contacts.Intents</A><br>
+<A HREF="android.provider.Contacts.Intents.Insert.html" class="hiddenlink" target="rightframe">Contacts.Intents.Insert</A><br>
+<A HREF="android.provider.Contacts.Intents.UI.html" class="hiddenlink" target="rightframe">Contacts.Intents.UI</A><br>
+<A HREF="android.provider.Contacts.OrganizationColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.OrganizationColumns</i></A><br>
+<A HREF="android.provider.Contacts.Organizations.html" class="hiddenlink" target="rightframe">Contacts.Organizations</A><br>
+<A HREF="android.provider.Contacts.People.html" class="hiddenlink" target="rightframe">Contacts.People</A><br>
+<A HREF="android.provider.Contacts.People.ContactMethods.html" class="hiddenlink" target="rightframe">Contacts.People.ContactMethods</A><br>
+<A HREF="android.provider.Contacts.People.Extensions.html" class="hiddenlink" target="rightframe">Contacts.People.Extensions</A><br>
+<A HREF="android.provider.Contacts.People.Phones.html" class="hiddenlink" target="rightframe">Contacts.People.Phones</A><br>
+<A HREF="android.provider.Contacts.PeopleColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PeopleColumns</i></A><br>
+<A HREF="android.provider.Contacts.Phones.html" class="hiddenlink" target="rightframe">Contacts.Phones</A><br>
+<A HREF="android.provider.Contacts.PhonesColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PhonesColumns</i></A><br>
+<A HREF="android.provider.Contacts.Photos.html" class="hiddenlink" target="rightframe">Contacts.Photos</A><br>
+<A HREF="android.provider.Contacts.PhotosColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PhotosColumns</i></A><br>
+<A HREF="android.provider.Contacts.PresenceColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.PresenceColumns</i></A><br>
+<A HREF="android.provider.Contacts.Settings.html" class="hiddenlink" target="rightframe">Contacts.Settings</A><br>
+<A HREF="android.provider.Contacts.SettingsColumns.html" class="hiddenlink" target="rightframe"><i>Contacts.SettingsColumns</i></A><br>
+<A HREF="android.content.ContentProvider.html" class="hiddenlink" target="rightframe">ContentProvider</A><br>
+<A HREF="android.content.ContentResolver.html" class="hiddenlink" target="rightframe">ContentResolver</A><br>
+<A HREF="android.content.Context.html" class="hiddenlink" target="rightframe">Context</A><br>
+<A HREF="android.content.ContextWrapper.html" class="hiddenlink" target="rightframe">ContextWrapper</A><br>
+<A HREF="android.database.CursorWindow.html" class="hiddenlink" target="rightframe">CursorWindow</A><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.database.DatabaseUtils.html" class="hiddenlink" target="rightframe">DatabaseUtils</A><br>
+<A HREF="java.util.Date.html" class="hiddenlink" target="rightframe">Date</A><br>
+<A HREF="android.text.format.DateUtils.html" class="hiddenlink" target="rightframe">DateUtils</A><br>
+<A HREF="android.os.Debug.MemoryInfo.html" class="hiddenlink" target="rightframe">Debug.MemoryInfo</A><br>
+<A HREF="android.app.Dialog.html" class="hiddenlink" target="rightframe">Dialog</A><br>
+<A HREF="android.graphics.drawable.Drawable.html" class="hiddenlink" target="rightframe">Drawable</A><br>
+<A HREF="android.graphics.drawable.Drawable.ConstantState.html" class="hiddenlink" target="rightframe">Drawable.ConstantState</A><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.text.format.Formatter.html" class="hiddenlink" target="rightframe">Formatter</A><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.opengl.GLSurfaceView.html" class="hiddenlink" target="rightframe">GLSurfaceView</A><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.os.HandlerThread.html" class="hiddenlink" target="rightframe">HandlerThread</A><br>
+<A HREF="android.view.HapticFeedbackConstants.html" class="hiddenlink" target="rightframe">HapticFeedbackConstants</A><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.text.style.ImageSpan.html" class="hiddenlink" target="rightframe">ImageSpan</A><br>
+<A HREF="android.inputmethodservice.InputMethodService.html" class="hiddenlink" target="rightframe">InputMethodService</A><br>
+<A HREF="android.text.InputType.html" class="hiddenlink" target="rightframe"><i>InputType</i></A><br>
+<A HREF="android.test.InstrumentationTestCase.html" class="hiddenlink" target="rightframe">InstrumentationTestCase</A><br>
+<A HREF="android.content.Intent.html" class="hiddenlink" target="rightframe">Intent</A><br>
+<A HREF="android.app.IntentService.html" class="hiddenlink" target="rightframe">IntentService</A><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.view.KeyEvent.html" class="hiddenlink" target="rightframe">KeyEvent</A><br>
+<A HREF="android.view.KeyEvent.Callback.html" class="hiddenlink" target="rightframe"><i>KeyEvent.Callback</i></A><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.app.LauncherActivity.html" class="hiddenlink" target="rightframe">LauncherActivity</A><br>
+<A HREF="android.location.LocationManager.html" class="hiddenlink" target="rightframe">LocationManager</A><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.Manifest.permission.html" class="hiddenlink" target="rightframe">Manifest.permission</A><br>
+<A HREF="android.widget.MediaController.MediaPlayerControl.html" class="hiddenlink" target="rightframe"><i>MediaController.MediaPlayerControl</i></A><br>
+<A HREF="android.media.MediaPlayer.html" class="hiddenlink" target="rightframe">MediaPlayer</A><br>
+<A HREF="android.provider.MediaStore.Images.Thumbnails.html" class="hiddenlink" target="rightframe">MediaStore.Images.Thumbnails</A><br>
+<A HREF="android.test.mock.MockContext.html" class="hiddenlink" target="rightframe">MockContext</A><br>
+<A HREF="android.test.mock.MockPackageManager.html" class="hiddenlink" target="rightframe">MockPackageManager</A><br>
+<A HREF="android.view.MotionEvent.html" class="hiddenlink" target="rightframe">MotionEvent</A><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.telephony.NeighboringCellInfo.html" class="hiddenlink" target="rightframe">NeighboringCellInfo</A><br>
+<A HREF="android.graphics.drawable.NinePatchDrawable.html" class="hiddenlink" target="rightframe">NinePatchDrawable</A><br>
+<A HREF="android.app.Notification.html" class="hiddenlink" target="rightframe">Notification</A><br>
+<A HREF="android.app.NotificationManager.html" class="hiddenlink" target="rightframe">NotificationManager</A><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.content.pm.PackageInfo.html" class="hiddenlink" target="rightframe">PackageInfo</A><br>
+<A HREF="android.content.pm.PackageManager.html" class="hiddenlink" target="rightframe">PackageManager</A><br>
+<A HREF="android.telephony.PhoneNumberUtils.html" class="hiddenlink" target="rightframe">PhoneNumberUtils</A><br>
+<A HREF="android.telephony.PhoneStateListener.html" class="hiddenlink" target="rightframe">PhoneStateListener</A><br>
+<A HREF="android.graphics.PixelFormat.html" class="hiddenlink" target="rightframe">PixelFormat</A><br>
+<A HREF="android.webkit.Plugin.html" class="hiddenlink" target="rightframe">Plugin</A><br>
+<A HREF="android.webkit.PluginData.html" class="hiddenlink" target="rightframe">PluginData</A><br>
+<A HREF="android.webkit.PluginList.html" class="hiddenlink" target="rightframe">PluginList</A><br>
+<A HREF="dalvik.system.PotentialDeadlockError.html" class="hiddenlink" target="rightframe">PotentialDeadlockError</A><br>
+<A HREF="android.content.pm.ProviderInfo.html" class="hiddenlink" target="rightframe">ProviderInfo</A><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.R.attr.html" class="hiddenlink" target="rightframe">R.attr</A><br>
+<A HREF="android.R.drawable.html" class="hiddenlink" target="rightframe">R.drawable</A><br>
+<A HREF="android.R.style.html" class="hiddenlink" target="rightframe">R.style</A><br>
+<A HREF="android.content.pm.ResolveInfo.html" class="hiddenlink" target="rightframe">ResolveInfo</A><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.app.SearchManager.html" class="hiddenlink" target="rightframe">SearchManager</A><br>
+<A HREF="android.app.Service.html" class="hiddenlink" target="rightframe">Service</A><br>
+<A HREF="android.content.pm.ServiceInfo.html" class="hiddenlink" target="rightframe">ServiceInfo</A><br>
+<A HREF="android.provider.Settings.html" class="hiddenlink" target="rightframe">Settings</A><br>
+<A HREF="android.provider.Settings.System.html" class="hiddenlink" target="rightframe">Settings.System</A><br>
+<A HREF="android.widget.SimpleCursorTreeAdapter.html" class="hiddenlink" target="rightframe">SimpleCursorTreeAdapter</A><br>
+<A HREF="java.net.Socket.html" class="hiddenlink" target="rightframe">Socket</A><br>
+<A HREF="android.database.sqlite.SQLiteDatabase.html" class="hiddenlink" target="rightframe">SQLiteDatabase</A><br>
+<A HREF="dalvik.system.StaleDexCacheError.html" class="hiddenlink" target="rightframe">StaleDexCacheError</A><br>
+<A HREF="java.lang.String.html" class="hiddenlink" target="rightframe">String</A><br>
+<A HREF="android.view.Surface.html" class="hiddenlink" target="rightframe">Surface</A><br>
+<A HREF="android.view.SurfaceHolder.html" class="hiddenlink" target="rightframe"><i>SurfaceHolder</i></A><br>
+<A HREF="android.view.SurfaceView.html" class="hiddenlink" target="rightframe">SurfaceView</A><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.telephony.TelephonyManager.html" class="hiddenlink" target="rightframe">TelephonyManager</A><br>
+<A HREF="dalvik.system.TemporaryDirectory.html" class="hiddenlink" target="rightframe">TemporaryDirectory</A><br>
+<A HREF="android.text.TextPaint.html" class="hiddenlink" target="rightframe">TextPaint</A><br>
+<A HREF="android.media.ToneGenerator.html" class="hiddenlink" target="rightframe">ToneGenerator</A><br>
+<A HREF="dalvik.system.TouchDex.html" class="hiddenlink" target="rightframe">TouchDex</A><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.webkit.UrlInterceptHandler.html" class="hiddenlink" target="rightframe"><i>UrlInterceptHandler</i></A><br>
+<A HREF="android.webkit.UrlInterceptRegistry.html" class="hiddenlink" target="rightframe">UrlInterceptRegistry</A><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.widget.VideoView.html" class="hiddenlink" target="rightframe">VideoView</A><br>
+<A HREF="android.view.View.html" class="hiddenlink" target="rightframe">View</A><br>
+<A HREF="android.view.ViewConfiguration.html" class="hiddenlink" target="rightframe">ViewConfiguration</A><br>
+<A HREF="dalvik.system.VMDebug.html" class="hiddenlink" target="rightframe">VMDebug</A><br>
+<A HREF="dalvik.system.VMRuntime.html" class="hiddenlink" target="rightframe">VMRuntime</A><br>
+<A HREF="dalvik.system.VMStack.html" class="hiddenlink" target="rightframe">VMStack</A><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#Z"><font size="-2">Z</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="android.webkit.WebChromeClient.html" class="hiddenlink" target="rightframe">WebChromeClient</A><br>
+<A HREF="android.webkit.WebSettings.html" class="hiddenlink" target="rightframe">WebSettings</A><br>
+<A HREF="android.webkit.WebView.html" class="hiddenlink" target="rightframe">WebView</A><br>
+<A HREF="android.webkit.WebViewClient.html" class="hiddenlink" target="rightframe">WebViewClient</A><br>
+<A HREF="android.view.Window.Callback.html" class="hiddenlink" target="rightframe"><i>Window.Callback</i></A><br>
+<A HREF="android.view.WindowManager.LayoutParams.html" class="hiddenlink" target="rightframe">WindowManager.LayoutParams</A><br>
+<A NAME="Z"></A>
+<br><font size="+2">Z</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<A HREF="dalvik.system.Zygote.html" class="hiddenlink" target="rightframe">Zygote</A><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/classes_index_removals.html b/docs/html/sdk/api_diff/5/changes/classes_index_removals.html
new file mode 100644
index 0000000..1389b2d
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/classes_index_removals.html
@@ -0,0 +1,61 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Class Removals Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Classes" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="classes_index_all.html" class="staysblack">All Classes</a>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<A HREF="classes_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<A HREF="classes_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/constructors_index_additions.html b/docs/html/sdk/api_diff/5/changes/constructors_index_additions.html
new file mode 100644
index 0000000..1746912
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/constructors_index_additions.html
@@ -0,0 +1,80 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Constructor Additions Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Constructors" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="constructors_index_all.html" class="staysblack">All Constructors</a>
+ <br>
+<A HREF="constructors_index_removals.html" xclass="hiddenlink">Removals</A>
+ <br>
+<b>Additions</b>
+ <br>
+<A HREF="constructors_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#B"><font size="-2">B</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.text.style.AbsoluteSizeSpan.html#android.text.style.AbsoluteSizeSpan.ctor_added(int, boolean)" class="hiddenlink" target="rightframe"><b>AbsoluteSizeSpan</b>
+(<code>int, boolean</code>)</A></nobr> constructor<br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>
+<a href="#A"><font size="-2">A</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>BitmapDrawable</i><br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources)" class="hiddenlink" target="rightframe"><b>BitmapDrawable</b>
+(<code>Resources</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources, java.lang.String)" class="hiddenlink" target="rightframe"><b>BitmapDrawable</b>
+(<code>Resources, String</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources, java.io.InputStream)" class="hiddenlink" target="rightframe"><b>BitmapDrawable</b>
+(<code>Resources, InputStream</code>)</A></nobr> constructor<br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/constructors_index_all.html b/docs/html/sdk/api_diff/5/changes/constructors_index_all.html
new file mode 100644
index 0000000..8cc7293
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/constructors_index_all.html
@@ -0,0 +1,239 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Constructor Differences Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Constructors" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<b>Constructors</b>
+ <br>
+<A HREF="constructors_index_removals.html" xclass="hiddenlink">Removals</A>
+ <br>
+<A HREF="constructors_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<A HREF="constructors_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.text.style.AbsoluteSizeSpan.html#android.text.style.AbsoluteSizeSpan.ctor_added(int, boolean)" class="hiddenlink" target="rightframe"><b>AbsoluteSizeSpan</b>
+(<code>int, boolean</code>)</A></nobr> constructor<br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>BitmapDrawable</i><br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_removed()" class="hiddenlink" target="rightframe"><strike>BitmapDrawable</strike>
+()</A></nobr> constructor<br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_removed(android.graphics.Bitmap)" class="hiddenlink" target="rightframe"><strike>BitmapDrawable</strike>
+(<code>Bitmap</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources)" class="hiddenlink" target="rightframe"><b>BitmapDrawable</b>
+(<code>Resources</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources, java.lang.String)" class="hiddenlink" target="rightframe"><b>BitmapDrawable</b>
+(<code>Resources, String</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources, java.io.InputStream)" class="hiddenlink" target="rightframe"><b>BitmapDrawable</b>
+(<code>Resources, InputStream</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_changed(java.io.InputStream)" class="hiddenlink" target="rightframe">BitmapDrawable
+(<code>InputStream</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_changed(java.lang.String)" class="hiddenlink" target="rightframe">BitmapDrawable
+(<code>String</code>)</A></nobr> constructor<br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.ctor_changed()" class="hiddenlink" target="rightframe">Contacts.Intents
+()</A></nobr> constructor<br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.ctor_changed()" class="hiddenlink" target="rightframe">Contacts.Intents.Insert
+()</A></nobr> constructor<br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.ctor_changed()" class="hiddenlink" target="rightframe">Contacts.Intents.UI
+()</A></nobr> constructor<br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>Date</i><br>
+ <nobr><A HREF="java.util.Date.html#java.util.Date.ctor_changed()" class="hiddenlink" target="rightframe">Date
+()</A></nobr> constructor<br>
+ <nobr><A HREF="java.util.Date.html#java.util.Date.ctor_changed(int, int, int, int, int, int)" class="hiddenlink" target="rightframe">Date
+(<code>int, int, int, int, int, int</code>)</A></nobr> constructor<br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>ImageSpan</i><br>
+ <nobr><A HREF="android.text.style.ImageSpan.html#android.text.style.ImageSpan.ctor_changed(android.graphics.Bitmap)" class="hiddenlink" target="rightframe">ImageSpan
+(<code>Bitmap</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="android.text.style.ImageSpan.html#android.text.style.ImageSpan.ctor_changed(android.graphics.Bitmap, int)" class="hiddenlink" target="rightframe">ImageSpan
+(<code>Bitmap, int</code>)</A></nobr> constructor<br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.ctor_changed(android.view.KeyEvent, long, int)" class="hiddenlink" target="rightframe">KeyEvent
+(<code>KeyEvent, long, int</code>)</A></nobr> constructor<br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>NeighboringCellInfo</i><br>
+ <nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.ctor_changed()" class="hiddenlink" target="rightframe">NeighboringCellInfo
+()</A></nobr> constructor<br>
+ <nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.ctor_changed(int, int)" class="hiddenlink" target="rightframe">NeighboringCellInfo
+(<code>int, int</code>)</A></nobr> constructor<br>
+<nobr><A HREF="android.graphics.drawable.NinePatchDrawable.html#android.graphics.drawable.NinePatchDrawable.ctor_changed(android.graphics.Bitmap, byte[], android.graphics.Rect, java.lang.String)" class="hiddenlink" target="rightframe">NinePatchDrawable
+(<code>Bitmap, byte[], Rect, String</code>)</A></nobr> constructor<br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.ctor_changed(java.lang.String, java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">Plugin
+(<code>String, String, String, String</code>)</A></nobr> constructor<br>
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.ctor_changed(java.io.InputStream, long, java.util.Map<java.lang.String, java.lang.String[]>, int)" class="hiddenlink" target="rightframe">PluginData
+(<code>InputStream, long, Map<String, String[]>, int</code>)</A></nobr> constructor<br>
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.ctor_changed()" class="hiddenlink" target="rightframe">PluginList
+()</A></nobr> constructor<br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>Socket</i><br>
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed()" class="hiddenlink" target="rightframe">Socket
+()</A></nobr> constructor<br>
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.lang.String, int)" class="hiddenlink" target="rightframe">Socket
+(<code>String, int</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.lang.String, int, java.net.InetAddress, int)" class="hiddenlink" target="rightframe">Socket
+(<code>String, int, InetAddress, int</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.net.Proxy)" class="hiddenlink" target="rightframe">Socket
+(<code>Proxy</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.net.SocketImpl)" class="hiddenlink" target="rightframe">Socket
+(<code>SocketImpl</code>)</A></nobr> constructor<br>
+<i>String</i><br>
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed()" class="hiddenlink" target="rightframe">String
+()</A></nobr> constructor<br>
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[])" class="hiddenlink" target="rightframe">String
+(<code>byte[]</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[], int)" class="hiddenlink" target="rightframe">String
+(<code>byte[], int</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[], int, int)" class="hiddenlink" target="rightframe">String
+(<code>byte[], int, int</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[], int, int, int)" class="hiddenlink" target="rightframe">String
+(<code>byte[], int, int, int</code>)</A></nobr> constructor<br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/constructors_index_changes.html b/docs/html/sdk/api_diff/5/changes/constructors_index_changes.html
new file mode 100644
index 0000000..d30aadc
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/constructors_index_changes.html
@@ -0,0 +1,207 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Constructor Changes Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Constructors" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="constructors_index_all.html" class="staysblack">All Constructors</a>
+ <br>
+<A HREF="constructors_index_removals.html" xclass="hiddenlink">Removals</A>
+ <br>
+<A HREF="constructors_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<b>Changes</b>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<A NAME="B"></A>
+<br><font size="+2">B</font>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>BitmapDrawable</i><br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_changed(java.io.InputStream)" class="hiddenlink" target="rightframe">BitmapDrawable
+(<code>InputStream</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_changed(java.lang.String)" class="hiddenlink" target="rightframe">BitmapDrawable
+(<code>String</code>)</A></nobr> constructor<br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.ctor_changed()" class="hiddenlink" target="rightframe">Contacts.Intents
+()</A></nobr> constructor<br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.ctor_changed()" class="hiddenlink" target="rightframe">Contacts.Intents.Insert
+()</A></nobr> constructor<br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.ctor_changed()" class="hiddenlink" target="rightframe">Contacts.Intents.UI
+()</A></nobr> constructor<br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>Date</i><br>
+ <nobr><A HREF="java.util.Date.html#java.util.Date.ctor_changed()" class="hiddenlink" target="rightframe">Date
+()</A></nobr> constructor<br>
+ <nobr><A HREF="java.util.Date.html#java.util.Date.ctor_changed(int, int, int, int, int, int)" class="hiddenlink" target="rightframe">Date
+(<code>int, int, int, int, int, int</code>)</A></nobr> constructor<br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>ImageSpan</i><br>
+ <nobr><A HREF="android.text.style.ImageSpan.html#android.text.style.ImageSpan.ctor_changed(android.graphics.Bitmap)" class="hiddenlink" target="rightframe">ImageSpan
+(<code>Bitmap</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="android.text.style.ImageSpan.html#android.text.style.ImageSpan.ctor_changed(android.graphics.Bitmap, int)" class="hiddenlink" target="rightframe">ImageSpan
+(<code>Bitmap, int</code>)</A></nobr> constructor<br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.ctor_changed(android.view.KeyEvent, long, int)" class="hiddenlink" target="rightframe">KeyEvent
+(<code>KeyEvent, long, int</code>)</A></nobr> constructor<br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>NeighboringCellInfo</i><br>
+ <nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.ctor_changed()" class="hiddenlink" target="rightframe">NeighboringCellInfo
+()</A></nobr> constructor<br>
+ <nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.ctor_changed(int, int)" class="hiddenlink" target="rightframe">NeighboringCellInfo
+(<code>int, int</code>)</A></nobr> constructor<br>
+<nobr><A HREF="android.graphics.drawable.NinePatchDrawable.html#android.graphics.drawable.NinePatchDrawable.ctor_changed(android.graphics.Bitmap, byte[], android.graphics.Rect, java.lang.String)" class="hiddenlink" target="rightframe">NinePatchDrawable
+(<code>Bitmap, byte[], Rect, String</code>)</A></nobr> constructor<br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.ctor_changed(java.lang.String, java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">Plugin
+(<code>String, String, String, String</code>)</A></nobr> constructor<br>
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.ctor_changed(java.io.InputStream, long, java.util.Map<java.lang.String, java.lang.String[]>, int)" class="hiddenlink" target="rightframe">PluginData
+(<code>InputStream, long, Map<String, String[]>, int</code>)</A></nobr> constructor<br>
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.ctor_changed()" class="hiddenlink" target="rightframe">PluginList
+()</A></nobr> constructor<br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>Socket</i><br>
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed()" class="hiddenlink" target="rightframe">Socket
+()</A></nobr> constructor<br>
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.lang.String, int)" class="hiddenlink" target="rightframe">Socket
+(<code>String, int</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.lang.String, int, java.net.InetAddress, int)" class="hiddenlink" target="rightframe">Socket
+(<code>String, int, InetAddress, int</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.net.Proxy)" class="hiddenlink" target="rightframe">Socket
+(<code>Proxy</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="java.net.Socket.html#java.net.Socket.ctor_changed(java.net.SocketImpl)" class="hiddenlink" target="rightframe">Socket
+(<code>SocketImpl</code>)</A></nobr> constructor<br>
+<i>String</i><br>
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed()" class="hiddenlink" target="rightframe">String
+()</A></nobr> constructor<br>
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[])" class="hiddenlink" target="rightframe">String
+(<code>byte[]</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[], int)" class="hiddenlink" target="rightframe">String
+(<code>byte[], int</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[], int, int)" class="hiddenlink" target="rightframe">String
+(<code>byte[], int, int</code>)</A></nobr> constructor<br>
+ <nobr><A HREF="java.lang.String.html#java.lang.String.ctor_changed(byte[], int, int, int)" class="hiddenlink" target="rightframe">String
+(<code>byte[], int, int, int</code>)</A></nobr> constructor<br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/constructors_index_removals.html b/docs/html/sdk/api_diff/5/changes/constructors_index_removals.html
new file mode 100644
index 0000000..65a255d
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/constructors_index_removals.html
@@ -0,0 +1,70 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Constructor Removals Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Constructors" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="constructors_index_all.html" class="staysblack">All Constructors</a>
+ <br>
+<b>Removals</b>
+ <br>
+<A HREF="constructors_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<A HREF="constructors_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<A NAME="B"></A>
+<br><font size="+2">B</font>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>BitmapDrawable</i><br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_removed()" class="hiddenlink" target="rightframe"><strike>BitmapDrawable</strike>
+()</A></nobr> constructor<br>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html#android.graphics.drawable.BitmapDrawable.ctor_removed(android.graphics.Bitmap)" class="hiddenlink" target="rightframe"><strike>BitmapDrawable</strike>
+(<code>Bitmap</code>)</A></nobr> constructor<br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/dalvik.system.AllocationLimitError.html b/docs/html/sdk/api_diff/5/changes/dalvik.system.AllocationLimitError.html
new file mode 100644
index 0000000..1eb4e6f
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/dalvik.system.AllocationLimitError.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+dalvik.system.AllocationLimitError
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class dalvik.system.<A HREF="../../../../reference/dalvik/system/AllocationLimitError.html" target="_top"><font size="+2"><code>AllocationLimitError</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/dalvik.system.PotentialDeadlockError.html b/docs/html/sdk/api_diff/5/changes/dalvik.system.PotentialDeadlockError.html
new file mode 100644
index 0000000..da034da
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/dalvik.system.PotentialDeadlockError.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+dalvik.system.PotentialDeadlockError
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class dalvik.system.<A HREF="../../../../reference/dalvik/system/PotentialDeadlockError.html" target="_top"><font size="+2"><code>PotentialDeadlockError</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/dalvik.system.StaleDexCacheError.html b/docs/html/sdk/api_diff/5/changes/dalvik.system.StaleDexCacheError.html
new file mode 100644
index 0000000..ac6d8e7
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/dalvik.system.StaleDexCacheError.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+dalvik.system.StaleDexCacheError
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class dalvik.system.<A HREF="../../../../reference/dalvik/system/StaleDexCacheError.html" target="_top"><font size="+2"><code>StaleDexCacheError</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/dalvik.system.TemporaryDirectory.html b/docs/html/sdk/api_diff/5/changes/dalvik.system.TemporaryDirectory.html
new file mode 100644
index 0000000..58e44ea
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/dalvik.system.TemporaryDirectory.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+dalvik.system.TemporaryDirectory
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class dalvik.system.<A HREF="../../../../reference/dalvik/system/TemporaryDirectory.html" target="_top"><font size="+2"><code>TemporaryDirectory</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/dalvik.system.TouchDex.html b/docs/html/sdk/api_diff/5/changes/dalvik.system.TouchDex.html
new file mode 100644
index 0000000..8823d00
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/dalvik.system.TouchDex.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+dalvik.system.TouchDex
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class dalvik.system.<A HREF="../../../../reference/dalvik/system/TouchDex.html" target="_top"><font size="+2"><code>TouchDex</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/dalvik.system.VMDebug.html b/docs/html/sdk/api_diff/5/changes/dalvik.system.VMDebug.html
new file mode 100644
index 0000000..8036a62
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/dalvik.system.VMDebug.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+dalvik.system.VMDebug
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class dalvik.system.<A HREF="../../../../reference/dalvik/system/VMDebug.html" target="_top"><font size="+2"><code>VMDebug</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/dalvik.system.VMRuntime.html b/docs/html/sdk/api_diff/5/changes/dalvik.system.VMRuntime.html
new file mode 100644
index 0000000..3f44afb
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/dalvik.system.VMRuntime.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+dalvik.system.VMRuntime
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class dalvik.system.<A HREF="../../../../reference/dalvik/system/VMRuntime.html" target="_top"><font size="+2"><code>VMRuntime</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/dalvik.system.VMStack.html b/docs/html/sdk/api_diff/5/changes/dalvik.system.VMStack.html
new file mode 100644
index 0000000..d5a2603
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/dalvik.system.VMStack.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+dalvik.system.VMStack
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class dalvik.system.<A HREF="../../../../reference/dalvik/system/VMStack.html" target="_top"><font size="+2"><code>VMStack</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/dalvik.system.Zygote.html b/docs/html/sdk/api_diff/5/changes/dalvik.system.Zygote.html
new file mode 100644
index 0000000..f4228f8
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/dalvik.system.Zygote.html
@@ -0,0 +1,108 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+dalvik.system.Zygote
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class dalvik.system.<A HREF="../../../../reference/dalvik/system/Zygote.html" target="_top"><font size="+2"><code>Zygote</code></font></A>
+</H2>
+<p><b>Now deprecated</b>.<br>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/fields_index_additions.html b/docs/html/sdk/api_diff/5/changes/fields_index_additions.html
new file mode 100644
index 0000000..d19a4d6
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/fields_index_additions.html
@@ -0,0 +1,962 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Field Additions Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Fields" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="fields_index_all.html" class="staysblack">All Fields</a>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<b>Additions</b>
+ <br>
+<A HREF="fields_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<A NAME="_"></A>
+<br><b>underscore</b>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns._SYNC_ACCOUNT_TYPE" class="hiddenlink" target="rightframe">_SYNC_ACCOUNT_TYPE</A>
+</nobr><br>
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.ACCOUNT_MANAGER" class="hiddenlink" target="rightframe">ACCOUNT_MANAGER</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.ACCOUNT_SERVICE" class="hiddenlink" target="rightframe">ACCOUNT_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.accountPreferences" class="hiddenlink" target="rightframe">accountPreferences</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.accountType" class="hiddenlink" target="rightframe">accountType</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_ACCESSIBILITY_SETTINGS" class="hiddenlink" target="rightframe">ACTION_ACCESSIBILITY_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_DOCK_EVENT" class="hiddenlink" target="rightframe">ACTION_DOCK_EVENT</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_MASK" class="hiddenlink" target="rightframe">ACTION_MASK</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_1_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_1_DOWN</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_1_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_1_UP</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_2_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_2_DOWN</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_2_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_2_UP</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_3_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_3_DOWN</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_3_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_3_UP</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_DOWN</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_ID_MASK" class="hiddenlink" target="rightframe">ACTION_POINTER_ID_MASK</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_ID_SHIFT" class="hiddenlink" target="rightframe">ACTION_POINTER_ID_SHIFT</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_UP</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_PRIVACY_SETTINGS" class="hiddenlink" target="rightframe">ACTION_PRIVACY_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.ALARM_ALERT" class="hiddenlink" target="rightframe">ALARM_ALERT</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Animation_InputMethod" class="hiddenlink" target="rightframe">Animation_InputMethod</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_50HZ" class="hiddenlink" target="rightframe">ANTIBANDING_50HZ</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_60HZ" class="hiddenlink" target="rightframe">ANTIBANDING_60HZ</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_AUTO" class="hiddenlink" target="rightframe">ANTIBANDING_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_OFF" class="hiddenlink" target="rightframe">ANTIBANDING_OFF</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.AUTHENTICATE_ACCOUNTS" class="hiddenlink" target="rightframe">AUTHENTICATE_ACCOUNTS</A>
+</nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_CAR_DOCK" class="hiddenlink" target="rightframe">CATEGORY_CAR_DOCK</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_DESK_DOCK" class="hiddenlink" target="rightframe">CATEGORY_DESK_DOCK</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_BACK" class="hiddenlink" target="rightframe">CHANNEL_IN_BACK</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_BACK_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_BACK_PROCESSED</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_DEFAULT" class="hiddenlink" target="rightframe">CHANNEL_IN_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_FRONT" class="hiddenlink" target="rightframe">CHANNEL_IN_FRONT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_FRONT_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_FRONT_PROCESSED</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_LEFT" class="hiddenlink" target="rightframe">CHANNEL_IN_LEFT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_LEFT_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_LEFT_PROCESSED</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_MONO" class="hiddenlink" target="rightframe">CHANNEL_IN_MONO</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_PRESSURE" class="hiddenlink" target="rightframe">CHANNEL_IN_PRESSURE</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_IN_RIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_RIGHT_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_RIGHT_PROCESSED</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_STEREO" class="hiddenlink" target="rightframe">CHANNEL_IN_STEREO</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_VOICE_DNLINK" class="hiddenlink" target="rightframe">CHANNEL_IN_VOICE_DNLINK</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_VOICE_UPLINK" class="hiddenlink" target="rightframe">CHANNEL_IN_VOICE_UPLINK</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_X_AXIS" class="hiddenlink" target="rightframe">CHANNEL_IN_X_AXIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_Y_AXIS" class="hiddenlink" target="rightframe">CHANNEL_IN_Y_AXIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_Z_AXIS" class="hiddenlink" target="rightframe">CHANNEL_IN_Z_AXIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_INVALID" class="hiddenlink" target="rightframe">CHANNEL_INVALID</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_5POINT1" class="hiddenlink" target="rightframe">CHANNEL_OUT_5POINT1</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_7POINT1" class="hiddenlink" target="rightframe">CHANNEL_OUT_7POINT1</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_BACK_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_BACK_CENTER</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_BACK_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_BACK_LEFT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_BACK_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_BACK_RIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_DEFAULT" class="hiddenlink" target="rightframe">CHANNEL_OUT_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_CENTER</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_LEFT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_LEFT_OF_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_LEFT_OF_CENTER</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_RIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_RIGHT_OF_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_RIGHT_OF_CENTER</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_LOW_FREQUENCY" class="hiddenlink" target="rightframe">CHANNEL_OUT_LOW_FREQUENCY</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_MONO" class="hiddenlink" target="rightframe">CHANNEL_OUT_MONO</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_QUAD" class="hiddenlink" target="rightframe">CHANNEL_OUT_QUAD</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_STEREO" class="hiddenlink" target="rightframe">CHANNEL_OUT_STEREO</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SURROUND" class="hiddenlink" target="rightframe">CHANNEL_OUT_SURROUND</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.clientLabel" class="hiddenlink" target="rightframe">clientLabel</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.clientPackage" class="hiddenlink" target="rightframe">clientPackage</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorBackgroundCacheHint" class="hiddenlink" target="rightframe">colorBackgroundCacheHint</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentAuthority" class="hiddenlink" target="rightframe">contentAuthority</A>
+</nobr><br>
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.CREATOR" class="hiddenlink" target="rightframe">CREATOR</A>
+</nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.DATA_ACTIVITY_DORMANT" class="hiddenlink" target="rightframe">DATA_ACTIVITY_DORMANT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.DEFAULT_ALARM_ALERT_URI" class="hiddenlink" target="rightframe">DEFAULT_ALARM_ALERT_URI</A>
+</nobr><br>
+<nobr><A HREF="android.text.TextPaint.html#android.text.TextPaint.density" class="hiddenlink" target="rightframe">density</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.detachWallpaper" class="hiddenlink" target="rightframe">detachWallpaper</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.detailColumn" class="hiddenlink" target="rightframe">detailColumn</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.detailSocialSummary" class="hiddenlink" target="rightframe">detailSocialSummary</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.dropDownHorizontalOffset" class="hiddenlink" target="rightframe">dropDownHorizontalOffset</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.dropDownVerticalOffset" class="hiddenlink" target="rightframe">dropDownVerticalOffset</A>
+</nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.ECLAIR" class="hiddenlink" target="rightframe">ECLAIR</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_AQUA" class="hiddenlink" target="rightframe">EFFECT_AQUA</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_BLACKBOARD" class="hiddenlink" target="rightframe">EFFECT_BLACKBOARD</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_MONO" class="hiddenlink" target="rightframe">EFFECT_MONO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_NEGATIVE" class="hiddenlink" target="rightframe">EFFECT_NEGATIVE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_NONE" class="hiddenlink" target="rightframe">EFFECT_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_POSTERIZE" class="hiddenlink" target="rightframe">EFFECT_POSTERIZE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_SEPIA" class="hiddenlink" target="rightframe">EFFECT_SEPIA</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_SOLARIZE" class="hiddenlink" target="rightframe">EFFECT_SOLARIZE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_WHITEBOARD" class="hiddenlink" target="rightframe">EFFECT_WHITEBOARD</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_AUTHENTICATION" class="hiddenlink" target="rightframe">ERROR_AUTHENTICATION</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_BAD_URL" class="hiddenlink" target="rightframe">ERROR_BAD_URL</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_CONNECT" class="hiddenlink" target="rightframe">ERROR_CONNECT</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_FAILED_SSL_HANDSHAKE" class="hiddenlink" target="rightframe">ERROR_FAILED_SSL_HANDSHAKE</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_FILE" class="hiddenlink" target="rightframe">ERROR_FILE</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_FILE_NOT_FOUND" class="hiddenlink" target="rightframe">ERROR_FILE_NOT_FOUND</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_HOST_LOOKUP" class="hiddenlink" target="rightframe">ERROR_HOST_LOOKUP</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_IO" class="hiddenlink" target="rightframe">ERROR_IO</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_PROXY_AUTHENTICATION" class="hiddenlink" target="rightframe">ERROR_PROXY_AUTHENTICATION</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_REDIRECT_LOOP" class="hiddenlink" target="rightframe">ERROR_REDIRECT_LOOP</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_TIMEOUT" class="hiddenlink" target="rightframe">ERROR_TIMEOUT</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_TOO_MANY_REQUESTS" class="hiddenlink" target="rightframe">ERROR_TOO_MANY_REQUESTS</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_UNKNOWN" class="hiddenlink" target="rightframe">ERROR_UNKNOWN</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_UNSUPPORTED_AUTH_SCHEME" class="hiddenlink" target="rightframe">ERROR_UNSUPPORTED_AUTH_SCHEME</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_UNSUPPORTED_SCHEME" class="hiddenlink" target="rightframe">ERROR_UNSUPPORTED_SCHEME</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_CHANGED_COMPONENT_NAME" class="hiddenlink" target="rightframe">EXTRA_CHANGED_COMPONENT_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE_CAR" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE_CAR</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE_DESK" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE_DESK</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE_UNDOCKED" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE_UNDOCKED</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_HEALTH" class="hiddenlink" target="rightframe">EXTRA_HEALTH</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_ICON_SMALL" class="hiddenlink" target="rightframe">EXTRA_ICON_SMALL</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_INITIAL_INTENTS" class="hiddenlink" target="rightframe">EXTRA_INITIAL_INTENTS</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_LEVEL" class="hiddenlink" target="rightframe">EXTRA_LEVEL</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_PLUGGED" class="hiddenlink" target="rightframe">EXTRA_PLUGGED</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_PRESENT" class="hiddenlink" target="rightframe">EXTRA_PRESENT</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_REMOTE_INTENT_TOKEN" class="hiddenlink" target="rightframe">EXTRA_REMOTE_INTENT_TOKEN</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_SCALE" class="hiddenlink" target="rightframe">EXTRA_SCALE</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_STATUS" class="hiddenlink" target="rightframe">EXTRA_STATUS</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_TECHNOLOGY" class="hiddenlink" target="rightframe">EXTRA_TECHNOLOGY</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_TEMPERATURE" class="hiddenlink" target="rightframe">EXTRA_TEMPERATURE</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_VOLTAGE" class="hiddenlink" target="rightframe">EXTRA_VOLTAGE</A>
+</nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.R.attr.html#android.R.attr.fadeScrollbars" class="hiddenlink" target="rightframe">fadeScrollbars</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.finishOnCloseSystemDialogs" class="hiddenlink" target="rightframe">finishOnCloseSystemDialogs</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_NO_ANIMATION" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_NO_ANIMATION</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_CANCELED" class="hiddenlink" target="rightframe">FLAG_CANCELED</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_CANCELED_LONG_PRESS" class="hiddenlink" target="rightframe">FLAG_CANCELED_LONG_PRESS</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD" class="hiddenlink" target="rightframe">FLAG_DISMISS_KEYGUARD</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS" class="hiddenlink" target="rightframe">FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_FOREGROUND" class="hiddenlink" target="rightframe">FLAG_FOREGROUND</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.FLAG_FOREGROUND_SERVICE" class="hiddenlink" target="rightframe">FLAG_FOREGROUND_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_LONG_PRESS" class="hiddenlink" target="rightframe">FLAG_LONG_PRESS</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_PERSISTENT_PROCESS" class="hiddenlink" target="rightframe">FLAG_PERSISTENT_PROCESS</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER" class="hiddenlink" target="rightframe">FLAG_SHOW_WALLPAPER</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED" class="hiddenlink" target="rightframe">FLAG_SHOW_WHEN_LOCKED</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_STARTED" class="hiddenlink" target="rightframe">FLAG_STARTED</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_SYSTEM_PROCESS" class="hiddenlink" target="rightframe">FLAG_SYSTEM_PROCESS</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_TRACKING" class="hiddenlink" target="rightframe">FLAG_TRACKING</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON" class="hiddenlink" target="rightframe">FLAG_TURN_SCREEN_ON</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_VIRTUAL_HARD_KEY" class="hiddenlink" target="rightframe">FLAG_VIRTUAL_HARD_KEY</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.flags" class="hiddenlink" target="rightframe">flags</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_AUTO" class="hiddenlink" target="rightframe">FLASH_MODE_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_OFF" class="hiddenlink" target="rightframe">FLASH_MODE_OFF</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_ON" class="hiddenlink" target="rightframe">FLASH_MODE_ON</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_RED_EYE" class="hiddenlink" target="rightframe">FLASH_MODE_RED_EYE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_TORCH" class="hiddenlink" target="rightframe">FLASH_MODE_TORCH</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_AUTO" class="hiddenlink" target="rightframe">FOCUS_MODE_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_FIXED" class="hiddenlink" target="rightframe">FOCUS_MODE_FIXED</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_INFINITY" class="hiddenlink" target="rightframe">FOCUS_MODE_INFINITY</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_MACRO" class="hiddenlink" target="rightframe">FOCUS_MODE_MACRO</A>
+</nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_SYNC_ACCOUNT_TYPE" class="hiddenlink" target="rightframe">GROUP_SYNC_ACCOUNT_TYPE</A>
+</nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.importanceReasonCode" class="hiddenlink" target="rightframe">importanceReasonCode</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.importanceReasonComponent" class="hiddenlink" target="rightframe">importanceReasonComponent</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.importanceReasonPid" class="hiddenlink" target="rightframe">importanceReasonPid</A>
+</nobr><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.R.attr.html#android.R.attr.killAfterRestore" class="hiddenlink" target="rightframe">killAfterRestore</A>
+</nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.MANAGE_ACCOUNTS" class="hiddenlink" target="rightframe">MANAGE_ACCOUNTS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.MEDIA_INFO_METADATA_UPDATE" class="hiddenlink" target="rightframe">MEDIA_INFO_METADATA_UPDATE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.METADATA_DOCK_HOME" class="hiddenlink" target="rightframe">METADATA_DOCK_HOME</A>
+</nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.navigationHidden" class="hiddenlink" target="rightframe">navigationHidden</A>
+</nobr><br>
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.NAVIGATIONHIDDEN_NO" class="hiddenlink" target="rightframe">NAVIGATIONHIDDEN_NO</A>
+</nobr><br>
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.NAVIGATIONHIDDEN_UNDEFINED" class="hiddenlink" target="rightframe">NAVIGATIONHIDDEN_UNDEFINED</A>
+</nobr><br>
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.NAVIGATIONHIDDEN_YES" class="hiddenlink" target="rightframe">NAVIGATIONHIDDEN_YES</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_1xRTT" class="hiddenlink" target="rightframe">NETWORK_TYPE_1xRTT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_CDMA" class="hiddenlink" target="rightframe">NETWORK_TYPE_CDMA</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_EVDO_0" class="hiddenlink" target="rightframe">NETWORK_TYPE_EVDO_0</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_EVDO_A" class="hiddenlink" target="rightframe">NETWORK_TYPE_EVDO_A</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_HSDPA" class="hiddenlink" target="rightframe">NETWORK_TYPE_HSDPA</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_HSPA" class="hiddenlink" target="rightframe">NETWORK_TYPE_HSPA</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_HSUPA" class="hiddenlink" target="rightframe">NETWORK_TYPE_HSUPA</A>
+</nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.PHONE_TYPE_CDMA" class="hiddenlink" target="rightframe">PHONE_TYPE_CDMA</A>
+</nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.REASON_PROVIDER_IN_USE" class="hiddenlink" target="rightframe">REASON_PROVIDER_IN_USE</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.REASON_SERVICE_IN_USE" class="hiddenlink" target="rightframe">REASON_SERVICE_IN_USE</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.REASON_UNKNOWN" class="hiddenlink" target="rightframe">REASON_UNKNOWN</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.reqFeatures" class="hiddenlink" target="rightframe">reqFeatures</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.required" class="hiddenlink" target="rightframe">required</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ResolveInfo.html#android.content.pm.ResolveInfo.resolvePackageName" class="hiddenlink" target="rightframe">resolvePackageName</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.restoreNeedsApplication" class="hiddenlink" target="rightframe">restoreNeedsApplication</A>
+</nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_ACTION" class="hiddenlink" target="rightframe">SCENE_MODE_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_AUTO" class="hiddenlink" target="rightframe">SCENE_MODE_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_BEACH" class="hiddenlink" target="rightframe">SCENE_MODE_BEACH</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_CANDLELIGHT" class="hiddenlink" target="rightframe">SCENE_MODE_CANDLELIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_FIREWORKS" class="hiddenlink" target="rightframe">SCENE_MODE_FIREWORKS</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_LANDSCAPE" class="hiddenlink" target="rightframe">SCENE_MODE_LANDSCAPE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_NIGHT" class="hiddenlink" target="rightframe">SCENE_MODE_NIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_NIGHT_PORTRAIT" class="hiddenlink" target="rightframe">SCENE_MODE_NIGHT_PORTRAIT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_PARTY" class="hiddenlink" target="rightframe">SCENE_MODE_PARTY</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_PORTRAIT" class="hiddenlink" target="rightframe">SCENE_MODE_PORTRAIT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_SNOW" class="hiddenlink" target="rightframe">SCENE_MODE_SNOW</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_SPORTS" class="hiddenlink" target="rightframe">SCENE_MODE_SPORTS</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_STEADYPHOTO" class="hiddenlink" target="rightframe">SCENE_MODE_STEADYPHOTO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_SUNSET" class="hiddenlink" target="rightframe">SCENE_MODE_SUNSET</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_THEATRE" class="hiddenlink" target="rightframe">SCENE_MODE_THEATRE</A>
+</nobr><br>
+<nobr><A HREF="android.R.drawable.html#android.R.drawable.screen_background_dark_transparent" class="hiddenlink" target="rightframe">screen_background_dark_transparent</A>
+</nobr><br>
+<nobr><A HREF="android.R.drawable.html#android.R.drawable.screen_background_light_transparent" class="hiddenlink" target="rightframe">screen_background_light_transparent</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.scrollbarDefaultDelayBeforeFade" class="hiddenlink" target="rightframe">scrollbarDefaultDelayBeforeFade</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.scrollbarFadeDuration" class="hiddenlink" target="rightframe">scrollbarFadeDuration</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.smallIcon" class="hiddenlink" target="rightframe">smallIcon</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_CONTINUATION_MASK" class="hiddenlink" target="rightframe">START_CONTINUATION_MASK</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_FLAG_REDELIVERY" class="hiddenlink" target="rightframe">START_FLAG_REDELIVERY</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_FLAG_RETRY" class="hiddenlink" target="rightframe">START_FLAG_RETRY</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_NOT_STICKY" class="hiddenlink" target="rightframe">START_NOT_STICKY</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_REDELIVER_INTENT" class="hiddenlink" target="rightframe">START_REDELIVER_INTENT</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_STICKY" class="hiddenlink" target="rightframe">START_STICKY</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_STICKY_COMPATIBILITY" class="hiddenlink" target="rightframe">START_STICKY_COMPATIBILITY</A>
+</nobr><br>
+<nobr><A HREF="android.R.drawable.html#android.R.drawable.stat_notify_sdcard_prepare" class="hiddenlink" target="rightframe">stat_notify_sdcard_prepare</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.STREAM_DTMF" class="hiddenlink" target="rightframe">STREAM_DTMF</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_PARAMETER_LIMIT" class="hiddenlink" target="rightframe">SUGGEST_PARAMETER_LIMIT</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.summaryColumn" class="hiddenlink" target="rightframe">summaryColumn</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.supportsUploading" class="hiddenlink" target="rightframe">supportsUploading</A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_INITIALIZE" class="hiddenlink" target="rightframe">SYNC_EXTRAS_INITIALIZE</A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_MANUAL" class="hiddenlink" target="rightframe">SYNC_EXTRAS_MANUAL</A>
+</nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceSearchResultSubtitle" class="hiddenlink" target="rightframe">textAppearanceSearchResultSubtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceSearchResultTitle" class="hiddenlink" target="rightframe">textAppearanceSearchResultTitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Light_WallpaperSettings" class="hiddenlink" target="rightframe">Theme_Light_WallpaperSettings</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Wallpaper" class="hiddenlink" target="rightframe">Theme_Wallpaper</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Wallpaper_NoTitleBar" class="hiddenlink" target="rightframe">Theme_Wallpaper_NoTitleBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Wallpaper_NoTitleBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Wallpaper_NoTitleBar_Fullscreen</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_WallpaperSettings" class="hiddenlink" target="rightframe">Theme_WallpaperSettings</A>
+</nobr><br>
+<nobr><A HREF="android.provider.MediaStore.Images.Thumbnails.html#android.provider.MediaStore.Images.Thumbnails.THUMB_DATA" class="hiddenlink" target="rightframe">THUMB_DATA</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbnail" class="hiddenlink" target="rightframe">thumbnail</A>
+</nobr><br>
+<nobr><A HREF="android.text.InputType.html#android.text.InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS" class="hiddenlink" target="rightframe">TYPE_TEXT_FLAG_NO_SUGGESTIONS</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.TYPE_WALLPAPER" class="hiddenlink" target="rightframe">TYPE_WALLPAPER</A>
+</nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>uid</i><br>
+ in
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.uid" class="hiddenlink" target="rightframe">android.app.ActivityManager.RunningAppProcessInfo</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.uid" class="hiddenlink" target="rightframe">android.app.ActivityManager.RunningServiceInfo</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.USE_CREDENTIALS" class="hiddenlink" target="rightframe">USE_CREDENTIALS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.userVisible" class="hiddenlink" target="rightframe">userVisible</A>
+</nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.HapticFeedbackConstants.html#android.view.HapticFeedbackConstants.VIRTUAL_KEY" class="hiddenlink" target="rightframe">VIRTUAL_KEY</A>
+</nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperCloseEnterAnimation" class="hiddenlink" target="rightframe">wallpaperCloseEnterAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperCloseExitAnimation" class="hiddenlink" target="rightframe">wallpaperCloseExitAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraCloseEnterAnimation" class="hiddenlink" target="rightframe">wallpaperIntraCloseEnterAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraCloseExitAnimation" class="hiddenlink" target="rightframe">wallpaperIntraCloseExitAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraOpenEnterAnimation" class="hiddenlink" target="rightframe">wallpaperIntraOpenEnterAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraOpenExitAnimation" class="hiddenlink" target="rightframe">wallpaperIntraOpenExitAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperOpenEnterAnimation" class="hiddenlink" target="rightframe">wallpaperOpenEnterAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperOpenExitAnimation" class="hiddenlink" target="rightframe">wallpaperOpenExitAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_AUTO" class="hiddenlink" target="rightframe">WHITE_BALANCE_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_CLOUDY_DAYLIGHT" class="hiddenlink" target="rightframe">WHITE_BALANCE_CLOUDY_DAYLIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_DAYLIGHT" class="hiddenlink" target="rightframe">WHITE_BALANCE_DAYLIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_FLUORESCENT" class="hiddenlink" target="rightframe">WHITE_BALANCE_FLUORESCENT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_INCANDESCENT" class="hiddenlink" target="rightframe">WHITE_BALANCE_INCANDESCENT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_SHADE" class="hiddenlink" target="rightframe">WHITE_BALANCE_SHADE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_TWILIGHT" class="hiddenlink" target="rightframe">WHITE_BALANCE_TWILIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_WARM_FLUORESCENT" class="hiddenlink" target="rightframe">WHITE_BALANCE_WARM_FLUORESCENT</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowShowWallpaper" class="hiddenlink" target="rightframe">windowShowWallpaper</A>
+</nobr><br>
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.graphics.PixelFormat.html#android.graphics.PixelFormat.YCbCr_422_I" class="hiddenlink" target="rightframe">YCbCr_422_I</A>
+</nobr><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/fields_index_all.html b/docs/html/sdk/api_diff/5/changes/fields_index_all.html
new file mode 100644
index 0000000..7e91258
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/fields_index_all.html
@@ -0,0 +1,1614 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Field Differences Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Fields" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<b>Fields</b>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<A HREF="fields_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<A HREF="fields_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<A NAME="_"></A>
+<br><b>underscore</b>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns._SYNC_ACCOUNT" class="hiddenlink" target="rightframe">_SYNC_ACCOUNT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns._SYNC_ACCOUNT_TYPE" class="hiddenlink" target="rightframe">_SYNC_ACCOUNT_TYPE</A>
+</nobr><br>
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.ACCOUNT_MANAGER" class="hiddenlink" target="rightframe">ACCOUNT_MANAGER</A>
+</nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.ACCOUNT_SERVICE" class="hiddenlink" target="rightframe">ACCOUNT_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.accountPreferences" class="hiddenlink" target="rightframe">accountPreferences</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.accountType" class="hiddenlink" target="rightframe">accountType</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.ACTION" class="hiddenlink" target="rightframe">ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_ACCESSIBILITY_SETTINGS" class="hiddenlink" target="rightframe">ACTION_ACCESSIBILITY_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.ACTION_DOCK_EVENT" class="hiddenlink" target="rightframe">ACTION_DOCK_EVENT</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_MASK" class="hiddenlink" target="rightframe">ACTION_MASK</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_1_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_1_DOWN</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_1_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_1_UP</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_2_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_2_DOWN</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_2_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_2_UP</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_3_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_3_DOWN</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_3_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_3_UP</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_DOWN" class="hiddenlink" target="rightframe">ACTION_POINTER_DOWN</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_ID_MASK" class="hiddenlink" target="rightframe">ACTION_POINTER_ID_MASK</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_ID_SHIFT" class="hiddenlink" target="rightframe">ACTION_POINTER_ID_SHIFT</A>
+</nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.ACTION_POINTER_UP" class="hiddenlink" target="rightframe">ACTION_POINTER_UP</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.html#android.provider.Settings.ACTION_PRIVACY_SETTINGS" class="hiddenlink" target="rightframe">ACTION_PRIVACY_SETTINGS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.ALARM_ALERT" class="hiddenlink" target="rightframe">ALARM_ALERT</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Animation_InputMethod" class="hiddenlink" target="rightframe">Animation_InputMethod</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_50HZ" class="hiddenlink" target="rightframe">ANTIBANDING_50HZ</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_60HZ" class="hiddenlink" target="rightframe">ANTIBANDING_60HZ</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_AUTO" class="hiddenlink" target="rightframe">ANTIBANDING_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.ANTIBANDING_OFF" class="hiddenlink" target="rightframe">ANTIBANDING_OFF</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.ATTACH_IMAGE" class="hiddenlink" target="rightframe">ATTACH_IMAGE</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.AUTHENTICATE_ACCOUNTS" class="hiddenlink" target="rightframe">AUTHENTICATE_ACCOUNTS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.AUTHORITY" class="hiddenlink" target="rightframe">AUTHORITY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.AUX_DATA" class="hiddenlink" target="rightframe">AUX_DATA</A>
+</nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_CAR_DOCK" class="hiddenlink" target="rightframe">CATEGORY_CAR_DOCK</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.CATEGORY_DESK_DOCK" class="hiddenlink" target="rightframe">CATEGORY_DESK_DOCK</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_DEFAULT" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_INVALID" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_INVALID</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_MONO" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_MONO</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_STEREO" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_STEREO</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_BACK" class="hiddenlink" target="rightframe">CHANNEL_IN_BACK</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_BACK_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_BACK_PROCESSED</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_DEFAULT" class="hiddenlink" target="rightframe">CHANNEL_IN_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_FRONT" class="hiddenlink" target="rightframe">CHANNEL_IN_FRONT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_FRONT_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_FRONT_PROCESSED</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_LEFT" class="hiddenlink" target="rightframe">CHANNEL_IN_LEFT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_LEFT_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_LEFT_PROCESSED</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_MONO" class="hiddenlink" target="rightframe">CHANNEL_IN_MONO</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_PRESSURE" class="hiddenlink" target="rightframe">CHANNEL_IN_PRESSURE</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_IN_RIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_RIGHT_PROCESSED" class="hiddenlink" target="rightframe">CHANNEL_IN_RIGHT_PROCESSED</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_STEREO" class="hiddenlink" target="rightframe">CHANNEL_IN_STEREO</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_VOICE_DNLINK" class="hiddenlink" target="rightframe">CHANNEL_IN_VOICE_DNLINK</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_VOICE_UPLINK" class="hiddenlink" target="rightframe">CHANNEL_IN_VOICE_UPLINK</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_X_AXIS" class="hiddenlink" target="rightframe">CHANNEL_IN_X_AXIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_Y_AXIS" class="hiddenlink" target="rightframe">CHANNEL_IN_Y_AXIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_IN_Z_AXIS" class="hiddenlink" target="rightframe">CHANNEL_IN_Z_AXIS</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_INVALID" class="hiddenlink" target="rightframe">CHANNEL_INVALID</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_5POINT1" class="hiddenlink" target="rightframe">CHANNEL_OUT_5POINT1</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_7POINT1" class="hiddenlink" target="rightframe">CHANNEL_OUT_7POINT1</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_BACK_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_BACK_CENTER</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_BACK_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_BACK_LEFT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_BACK_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_BACK_RIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_DEFAULT" class="hiddenlink" target="rightframe">CHANNEL_OUT_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_CENTER</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_LEFT" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_LEFT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_LEFT_OF_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_LEFT_OF_CENTER</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_RIGHT" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_RIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_FRONT_RIGHT_OF_CENTER" class="hiddenlink" target="rightframe">CHANNEL_OUT_FRONT_RIGHT_OF_CENTER</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_LOW_FREQUENCY" class="hiddenlink" target="rightframe">CHANNEL_OUT_LOW_FREQUENCY</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_MONO" class="hiddenlink" target="rightframe">CHANNEL_OUT_MONO</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_QUAD" class="hiddenlink" target="rightframe">CHANNEL_OUT_QUAD</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_STEREO" class="hiddenlink" target="rightframe">CHANNEL_OUT_STEREO</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_OUT_SURROUND" class="hiddenlink" target="rightframe">CHANNEL_OUT_SURROUND</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.clientLabel" class="hiddenlink" target="rightframe">clientLabel</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.clientPackage" class="hiddenlink" target="rightframe">clientPackage</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.colorBackgroundCacheHint" class="hiddenlink" target="rightframe">colorBackgroundCacheHint</A>
+</nobr><br>
+<i>COMPANY</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.COMPANY" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.COMPANY" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<i>CONTENT_DIRECTORY</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.Organizations</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.ContactMethods.html#android.provider.Contacts.People.ContactMethods.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.People.ContactMethods</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.Extensions.html#android.provider.Contacts.People.Extensions.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.Phones.html#android.provider.Contacts.People.Phones.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Phones</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Photos.html#android.provider.Contacts.Photos.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.Photos</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.Settings</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_EMAIL_ITEM_TYPE" class="hiddenlink" target="rightframe">CONTENT_EMAIL_ITEM_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_EMAIL_TYPE" class="hiddenlink" target="rightframe">CONTENT_EMAIL_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_EMAIL_URI" class="hiddenlink" target="rightframe">CONTENT_EMAIL_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_FILTER_URI" class="hiddenlink" target="rightframe">CONTENT_FILTER_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_FILTER_URL" class="hiddenlink" target="rightframe">CONTENT_FILTER_URL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_IM_ITEM_TYPE" class="hiddenlink" target="rightframe">CONTENT_IM_ITEM_TYPE</A>
+</nobr><br>
+<i>CONTENT_ITEM_TYPE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_POSTAL_ITEM_TYPE" class="hiddenlink" target="rightframe">CONTENT_POSTAL_ITEM_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_POSTAL_TYPE" class="hiddenlink" target="rightframe">CONTENT_POSTAL_TYPE</A>
+</nobr><br>
+<i>CONTENT_TYPE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<i>CONTENT_URI</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Organizations</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Photos.html#android.provider.Contacts.Photos.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Photos</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Settings</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.contentAuthority" class="hiddenlink" target="rightframe">contentAuthority</A>
+</nobr><br>
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.CREATOR" class="hiddenlink" target="rightframe">CREATOR</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.CUSTOM_RINGTONE" class="hiddenlink" target="rightframe">CUSTOM_RINGTONE</A>
+</nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>DATA</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.DATA" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.DATA" class="hiddenlink" target="rightframe">android.provider.Contacts.PhotosColumns</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.DATA_ACTIVITY_DORMANT" class="hiddenlink" target="rightframe">DATA_ACTIVITY_DORMANT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Settings.System.html#android.provider.Settings.System.DEFAULT_ALARM_ALERT_URI" class="hiddenlink" target="rightframe">DEFAULT_ALARM_ALERT_URI</A>
+</nobr><br>
+<i>DEFAULT_SORT_ORDER</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Organizations</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.ContactMethods.html#android.provider.Contacts.People.ContactMethods.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People.ContactMethods</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.Extensions.html#android.provider.Contacts.People.Extensions.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.Phones.html#android.provider.Contacts.People.Phones.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Phones</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Photos.html#android.provider.Contacts.Photos.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Photos</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Settings</A>
+</nobr><br>
+<i>DELETED_CONTENT_URI</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.DELETED_CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.DELETED_CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+<nobr><A HREF="android.text.TextPaint.html#android.text.TextPaint.density" class="hiddenlink" target="rightframe">density</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.detachWallpaper" class="hiddenlink" target="rightframe">detachWallpaper</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.detailColumn" class="hiddenlink" target="rightframe">detailColumn</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.detailSocialSummary" class="hiddenlink" target="rightframe">detailSocialSummary</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.DISPLAY_NAME" class="hiddenlink" target="rightframe">DISPLAY_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.DOWNLOAD_REQUIRED" class="hiddenlink" target="rightframe">DOWNLOAD_REQUIRED</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.dropDownHorizontalOffset" class="hiddenlink" target="rightframe">dropDownHorizontalOffset</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.dropDownVerticalOffset" class="hiddenlink" target="rightframe">dropDownVerticalOffset</A>
+</nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.Build.VERSION_CODES.html#android.os.Build.VERSION_CODES.ECLAIR" class="hiddenlink" target="rightframe">ECLAIR</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_AQUA" class="hiddenlink" target="rightframe">EFFECT_AQUA</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_BLACKBOARD" class="hiddenlink" target="rightframe">EFFECT_BLACKBOARD</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_MONO" class="hiddenlink" target="rightframe">EFFECT_MONO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_NEGATIVE" class="hiddenlink" target="rightframe">EFFECT_NEGATIVE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_NONE" class="hiddenlink" target="rightframe">EFFECT_NONE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_POSTERIZE" class="hiddenlink" target="rightframe">EFFECT_POSTERIZE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_SEPIA" class="hiddenlink" target="rightframe">EFFECT_SEPIA</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_SOLARIZE" class="hiddenlink" target="rightframe">EFFECT_SOLARIZE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.EFFECT_WHITEBOARD" class="hiddenlink" target="rightframe">EFFECT_WHITEBOARD</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.EMAIL" class="hiddenlink" target="rightframe">EMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.EMAIL_ISPRIMARY" class="hiddenlink" target="rightframe">EMAIL_ISPRIMARY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.EMAIL_TYPE" class="hiddenlink" target="rightframe">EMAIL_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_AUTHENTICATION" class="hiddenlink" target="rightframe">ERROR_AUTHENTICATION</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_BAD_URL" class="hiddenlink" target="rightframe">ERROR_BAD_URL</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_CONNECT" class="hiddenlink" target="rightframe">ERROR_CONNECT</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_FAILED_SSL_HANDSHAKE" class="hiddenlink" target="rightframe">ERROR_FAILED_SSL_HANDSHAKE</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_FILE" class="hiddenlink" target="rightframe">ERROR_FILE</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_FILE_NOT_FOUND" class="hiddenlink" target="rightframe">ERROR_FILE_NOT_FOUND</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_HOST_LOOKUP" class="hiddenlink" target="rightframe">ERROR_HOST_LOOKUP</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_IO" class="hiddenlink" target="rightframe">ERROR_IO</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_PROXY_AUTHENTICATION" class="hiddenlink" target="rightframe">ERROR_PROXY_AUTHENTICATION</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_REDIRECT_LOOP" class="hiddenlink" target="rightframe">ERROR_REDIRECT_LOOP</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_TIMEOUT" class="hiddenlink" target="rightframe">ERROR_TIMEOUT</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_TOO_MANY_REQUESTS" class="hiddenlink" target="rightframe">ERROR_TOO_MANY_REQUESTS</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_UNKNOWN" class="hiddenlink" target="rightframe">ERROR_UNKNOWN</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_UNSUPPORTED_AUTH_SCHEME" class="hiddenlink" target="rightframe">ERROR_UNSUPPORTED_AUTH_SCHEME</A>
+</nobr><br>
+<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.ERROR_UNSUPPORTED_SCHEME" class="hiddenlink" target="rightframe">ERROR_UNSUPPORTED_SCHEME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.EXISTS_ON_SERVER" class="hiddenlink" target="rightframe">EXISTS_ON_SERVER</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_CHANGED_COMPONENT_NAME" class="hiddenlink" target="rightframe">EXTRA_CHANGED_COMPONENT_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.EXTRA_CREATE_DESCRIPTION" class="hiddenlink" target="rightframe">EXTRA_CREATE_DESCRIPTION</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE_CAR" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE_CAR</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE_DESK" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE_DESK</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_DOCK_STATE_UNDOCKED" class="hiddenlink" target="rightframe">EXTRA_DOCK_STATE_UNDOCKED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.EXTRA_FORCE_CREATE" class="hiddenlink" target="rightframe">EXTRA_FORCE_CREATE</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_HEALTH" class="hiddenlink" target="rightframe">EXTRA_HEALTH</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_ICON_SMALL" class="hiddenlink" target="rightframe">EXTRA_ICON_SMALL</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_INITIAL_INTENTS" class="hiddenlink" target="rightframe">EXTRA_INITIAL_INTENTS</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_LEVEL" class="hiddenlink" target="rightframe">EXTRA_LEVEL</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_PLUGGED" class="hiddenlink" target="rightframe">EXTRA_PLUGGED</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_PRESENT" class="hiddenlink" target="rightframe">EXTRA_PRESENT</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.EXTRA_REMOTE_INTENT_TOKEN" class="hiddenlink" target="rightframe">EXTRA_REMOTE_INTENT_TOKEN</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_SCALE" class="hiddenlink" target="rightframe">EXTRA_SCALE</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_STATUS" class="hiddenlink" target="rightframe">EXTRA_STATUS</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_TECHNOLOGY" class="hiddenlink" target="rightframe">EXTRA_TECHNOLOGY</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_TEMPERATURE" class="hiddenlink" target="rightframe">EXTRA_TEMPERATURE</A>
+</nobr><br>
+<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.EXTRA_VOLTAGE" class="hiddenlink" target="rightframe">EXTRA_VOLTAGE</A>
+</nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.R.attr.html#android.R.attr.fadeScrollbars" class="hiddenlink" target="rightframe">fadeScrollbars</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.FILTER_CONTACTS_ACTION" class="hiddenlink" target="rightframe">FILTER_CONTACTS_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.FILTER_TEXT_EXTRA_KEY" class="hiddenlink" target="rightframe">FILTER_TEXT_EXTRA_KEY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.finishOnCloseSystemDialogs" class="hiddenlink" target="rightframe">finishOnCloseSystemDialogs</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.FLAG_ACTIVITY_NO_ANIMATION" class="hiddenlink" target="rightframe">FLAG_ACTIVITY_NO_ANIMATION</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_CANCELED" class="hiddenlink" target="rightframe">FLAG_CANCELED</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_CANCELED_LONG_PRESS" class="hiddenlink" target="rightframe">FLAG_CANCELED_LONG_PRESS</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD" class="hiddenlink" target="rightframe">FLAG_DISMISS_KEYGUARD</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ActivityInfo.html#android.content.pm.ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS" class="hiddenlink" target="rightframe">FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_FOREGROUND" class="hiddenlink" target="rightframe">FLAG_FOREGROUND</A>
+</nobr><br>
+<nobr><A HREF="android.app.Notification.html#android.app.Notification.FLAG_FOREGROUND_SERVICE" class="hiddenlink" target="rightframe">FLAG_FOREGROUND_SERVICE</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_LONG_PRESS" class="hiddenlink" target="rightframe">FLAG_LONG_PRESS</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_PERSISTENT_PROCESS" class="hiddenlink" target="rightframe">FLAG_PERSISTENT_PROCESS</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER" class="hiddenlink" target="rightframe">FLAG_SHOW_WALLPAPER</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED" class="hiddenlink" target="rightframe">FLAG_SHOW_WHEN_LOCKED</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_STARTED" class="hiddenlink" target="rightframe">FLAG_STARTED</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.FLAG_SYSTEM_PROCESS" class="hiddenlink" target="rightframe">FLAG_SYSTEM_PROCESS</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_TRACKING" class="hiddenlink" target="rightframe">FLAG_TRACKING</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON" class="hiddenlink" target="rightframe">FLAG_TURN_SCREEN_ON</A>
+</nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.FLAG_VIRTUAL_HARD_KEY" class="hiddenlink" target="rightframe">FLAG_VIRTUAL_HARD_KEY</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.flags" class="hiddenlink" target="rightframe">flags</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_AUTO" class="hiddenlink" target="rightframe">FLASH_MODE_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_OFF" class="hiddenlink" target="rightframe">FLASH_MODE_OFF</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_ON" class="hiddenlink" target="rightframe">FLASH_MODE_ON</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_RED_EYE" class="hiddenlink" target="rightframe">FLASH_MODE_RED_EYE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FLASH_MODE_TORCH" class="hiddenlink" target="rightframe">FLASH_MODE_TORCH</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_AUTO" class="hiddenlink" target="rightframe">FOCUS_MODE_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_FIXED" class="hiddenlink" target="rightframe">FOCUS_MODE_FIXED</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_INFINITY" class="hiddenlink" target="rightframe">FOCUS_MODE_INFINITY</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.FOCUS_MODE_MACRO" class="hiddenlink" target="rightframe">FOCUS_MODE_MACRO</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.FULL_MODE" class="hiddenlink" target="rightframe">FULL_MODE</A>
+</nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.Surface.html#android.view.Surface.GPU" class="hiddenlink" target="rightframe">GPU</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.GROUP_ANDROID_STARRED" class="hiddenlink" target="rightframe">GROUP_ANDROID_STARRED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_ID" class="hiddenlink" target="rightframe">GROUP_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.GROUP_MY_CONTACTS" class="hiddenlink" target="rightframe">GROUP_MY_CONTACTS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.GROUP_NAME_EXTRA_KEY" class="hiddenlink" target="rightframe">GROUP_NAME_EXTRA_KEY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_SYNC_ACCOUNT" class="hiddenlink" target="rightframe">GROUP_SYNC_ACCOUNT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_SYNC_ACCOUNT_TYPE" class="hiddenlink" target="rightframe">GROUP_SYNC_ACCOUNT_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_SYNC_ID" class="hiddenlink" target="rightframe">GROUP_SYNC_ID</A>
+</nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.Surface.html#android.view.Surface.HARDWARE" class="hiddenlink" target="rightframe">HARDWARE</A>
+</nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.PresenceColumns.html#android.provider.Contacts.PresenceColumns.IM_ACCOUNT" class="hiddenlink" target="rightframe">IM_ACCOUNT</A>
+</nobr><br>
+<i>IM_HANDLE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.IM_HANDLE" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PresenceColumns.html#android.provider.Contacts.PresenceColumns.IM_HANDLE" class="hiddenlink" target="rightframe">android.provider.Contacts.PresenceColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.IM_ISPRIMARY" class="hiddenlink" target="rightframe">IM_ISPRIMARY</A>
+</nobr><br>
+<i>IM_PROTOCOL</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.IM_PROTOCOL" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PresenceColumns.html#android.provider.Contacts.PresenceColumns.IM_PROTOCOL" class="hiddenlink" target="rightframe">android.provider.Contacts.PresenceColumns</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.importanceReasonCode" class="hiddenlink" target="rightframe">importanceReasonCode</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.importanceReasonComponent" class="hiddenlink" target="rightframe">importanceReasonComponent</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.importanceReasonPid" class="hiddenlink" target="rightframe">importanceReasonPid</A>
+</nobr><br>
+<i>ISPRIMARY</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.ISPRIMARY" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.ISPRIMARY" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.ISPRIMARY" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ProviderInfo.html#android.content.pm.ProviderInfo.isSyncable" class="hiddenlink" target="rightframe">isSyncable</A>
+</nobr><br>
+<A NAME="J"></A>
+<br><font size="+2">J</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.JOB_TITLE" class="hiddenlink" target="rightframe">JOB_TITLE</A>
+</nobr><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns.KEY" class="hiddenlink" target="rightframe">KEY</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.killAfterRestore" class="hiddenlink" target="rightframe">killAfterRestore</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.KIND" class="hiddenlink" target="rightframe">KIND</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_EMAIL" class="hiddenlink" target="rightframe">KIND_EMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_IM" class="hiddenlink" target="rightframe">KIND_IM</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_ORGANIZATION" class="hiddenlink" target="rightframe">KIND_ORGANIZATION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_PHONE" class="hiddenlink" target="rightframe">KIND_PHONE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_POSTAL" class="hiddenlink" target="rightframe">KIND_POSTAL</A>
+</nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>LABEL</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.LABEL" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.LABEL" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.LABEL" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.LAST_TIME_CONTACTED" class="hiddenlink" target="rightframe">LAST_TIME_CONTACTED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_ALL_CONTACTS_ACTION" class="hiddenlink" target="rightframe">LIST_ALL_CONTACTS_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_CONTACTS_WITH_PHONES_ACTION" class="hiddenlink" target="rightframe">LIST_CONTACTS_WITH_PHONES_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_DEFAULT" class="hiddenlink" target="rightframe">LIST_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_FREQUENT_ACTION" class="hiddenlink" target="rightframe">LIST_FREQUENT_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_GROUP_ACTION" class="hiddenlink" target="rightframe">LIST_GROUP_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_STARRED_ACTION" class="hiddenlink" target="rightframe">LIST_STARRED_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_STREQUENT_ACTION" class="hiddenlink" target="rightframe">LIST_STREQUENT_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.LOCAL_VERSION" class="hiddenlink" target="rightframe">LOCAL_VERSION</A>
+</nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.MANAGE_ACCOUNTS" class="hiddenlink" target="rightframe">MANAGE_ACCOUNTS</A>
+</nobr><br>
+<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.MEDIA_INFO_METADATA_UPDATE" class="hiddenlink" target="rightframe">MEDIA_INFO_METADATA_UPDATE</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.MEMORY_TYPE_GPU" class="hiddenlink" target="rightframe">MEMORY_TYPE_GPU</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.MEMORY_TYPE_HARDWARE" class="hiddenlink" target="rightframe">MEMORY_TYPE_HARDWARE</A>
+</nobr><br>
+<nobr><A HREF="android.content.Intent.html#android.content.Intent.METADATA_DOCK_HOME" class="hiddenlink" target="rightframe">METADATA_DOCK_HOME</A>
+</nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>NAME</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ExtensionsColumns.html#android.provider.Contacts.ExtensionsColumns.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.ExtensionsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.PeopleColumns</A>
+</nobr><br>
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.navigationHidden" class="hiddenlink" target="rightframe">navigationHidden</A>
+</nobr><br>
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.NAVIGATIONHIDDEN_NO" class="hiddenlink" target="rightframe">NAVIGATIONHIDDEN_NO</A>
+</nobr><br>
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.NAVIGATIONHIDDEN_UNDEFINED" class="hiddenlink" target="rightframe">NAVIGATIONHIDDEN_UNDEFINED</A>
+</nobr><br>
+<nobr><A HREF="android.content.res.Configuration.html#android.content.res.Configuration.NAVIGATIONHIDDEN_YES" class="hiddenlink" target="rightframe">NAVIGATIONHIDDEN_YES</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_1xRTT" class="hiddenlink" target="rightframe">NETWORK_TYPE_1xRTT</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_CDMA" class="hiddenlink" target="rightframe">NETWORK_TYPE_CDMA</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_EVDO_0" class="hiddenlink" target="rightframe">NETWORK_TYPE_EVDO_0</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_EVDO_A" class="hiddenlink" target="rightframe">NETWORK_TYPE_EVDO_A</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_HSDPA" class="hiddenlink" target="rightframe">NETWORK_TYPE_HSDPA</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_HSPA" class="hiddenlink" target="rightframe">NETWORK_TYPE_HSPA</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.NETWORK_TYPE_HSUPA" class="hiddenlink" target="rightframe">NETWORK_TYPE_HSUPA</A>
+</nobr><br>
+<i>NOTES</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.NOTES" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.NOTES" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.NOTES" class="hiddenlink" target="rightframe">android.provider.Contacts.PeopleColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.NUMBER" class="hiddenlink" target="rightframe">NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.NUMBER_KEY" class="hiddenlink" target="rightframe">NUMBER_KEY</A>
+</nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>PERSON_ID</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.Extensions.html#android.provider.Contacts.People.Extensions.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.PhotosColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONE" class="hiddenlink" target="rightframe">PHONE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONE_ISPRIMARY" class="hiddenlink" target="rightframe">PHONE_ISPRIMARY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONE_TYPE" class="hiddenlink" target="rightframe">PHONE_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.PHONE_TYPE_CDMA" class="hiddenlink" target="rightframe">PHONE_TYPE_CDMA</A>
+</nobr><br>
+<i>PHONETIC_NAME</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONETIC_NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.PHONETIC_NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.PeopleColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.PHOTO_VERSION" class="hiddenlink" target="rightframe">PHOTO_VERSION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.POSTAL" class="hiddenlink" target="rightframe">POSTAL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.POSTAL_ISPRIMARY" class="hiddenlink" target="rightframe">POSTAL_ISPRIMARY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.POSTAL_LOCATION_LATITUDE" class="hiddenlink" target="rightframe">POSTAL_LOCATION_LATITUDE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.POSTAL_LOCATION_LONGITUDE" class="hiddenlink" target="rightframe">POSTAL_LOCATION_LONGITUDE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.POSTAL_TYPE" class="hiddenlink" target="rightframe">POSTAL_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.PRIMARY_EMAIL_ID" class="hiddenlink" target="rightframe">PRIMARY_EMAIL_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.PRIMARY_ORGANIZATION_ID" class="hiddenlink" target="rightframe">PRIMARY_ORGANIZATION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.PRIMARY_PHONE_ID" class="hiddenlink" target="rightframe">PRIMARY_PHONE_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_AIM" class="hiddenlink" target="rightframe">PROTOCOL_AIM</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_GOOGLE_TALK" class="hiddenlink" target="rightframe">PROTOCOL_GOOGLE_TALK</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_ICQ" class="hiddenlink" target="rightframe">PROTOCOL_ICQ</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_JABBER" class="hiddenlink" target="rightframe">PROTOCOL_JABBER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_MSN" class="hiddenlink" target="rightframe">PROTOCOL_MSN</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_QQ" class="hiddenlink" target="rightframe">PROTOCOL_QQ</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_SKYPE" class="hiddenlink" target="rightframe">PROTOCOL_SKYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_YAHOO" class="hiddenlink" target="rightframe">PROTOCOL_YAHOO</A>
+</nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.RAW_CONTENT_URI" class="hiddenlink" target="rightframe">RAW_CONTENT_URI</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.REASON_PROVIDER_IN_USE" class="hiddenlink" target="rightframe">REASON_PROVIDER_IN_USE</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.REASON_SERVICE_IN_USE" class="hiddenlink" target="rightframe">REASON_SERVICE_IN_USE</A>
+</nobr><br>
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.REASON_UNKNOWN" class="hiddenlink" target="rightframe">REASON_UNKNOWN</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.PackageInfo.html#android.content.pm.PackageInfo.reqFeatures" class="hiddenlink" target="rightframe">reqFeatures</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.required" class="hiddenlink" target="rightframe">required</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ResolveInfo.html#android.content.pm.ResolveInfo.resolvePackageName" class="hiddenlink" target="rightframe">resolvePackageName</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.restoreNeedsApplication" class="hiddenlink" target="rightframe">restoreNeedsApplication</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_ALL" class="hiddenlink" target="rightframe">ROUTE_ALL</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_BLUETOOTH_A2DP" class="hiddenlink" target="rightframe">ROUTE_BLUETOOTH_A2DP</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_BLUETOOTH_SCO" class="hiddenlink" target="rightframe">ROUTE_BLUETOOTH_SCO</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_EARPIECE" class="hiddenlink" target="rightframe">ROUTE_EARPIECE</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_HEADSET" class="hiddenlink" target="rightframe">ROUTE_HEADSET</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_SPEAKER" class="hiddenlink" target="rightframe">ROUTE_SPEAKER</A>
+</nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_ACTION" class="hiddenlink" target="rightframe">SCENE_MODE_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_AUTO" class="hiddenlink" target="rightframe">SCENE_MODE_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_BEACH" class="hiddenlink" target="rightframe">SCENE_MODE_BEACH</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_CANDLELIGHT" class="hiddenlink" target="rightframe">SCENE_MODE_CANDLELIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_FIREWORKS" class="hiddenlink" target="rightframe">SCENE_MODE_FIREWORKS</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_LANDSCAPE" class="hiddenlink" target="rightframe">SCENE_MODE_LANDSCAPE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_NIGHT" class="hiddenlink" target="rightframe">SCENE_MODE_NIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_NIGHT_PORTRAIT" class="hiddenlink" target="rightframe">SCENE_MODE_NIGHT_PORTRAIT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_PARTY" class="hiddenlink" target="rightframe">SCENE_MODE_PARTY</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_PORTRAIT" class="hiddenlink" target="rightframe">SCENE_MODE_PORTRAIT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_SNOW" class="hiddenlink" target="rightframe">SCENE_MODE_SNOW</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_SPORTS" class="hiddenlink" target="rightframe">SCENE_MODE_SPORTS</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_STEADYPHOTO" class="hiddenlink" target="rightframe">SCENE_MODE_STEADYPHOTO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_SUNSET" class="hiddenlink" target="rightframe">SCENE_MODE_SUNSET</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.SCENE_MODE_THEATRE" class="hiddenlink" target="rightframe">SCENE_MODE_THEATRE</A>
+</nobr><br>
+<nobr><A HREF="android.R.drawable.html#android.R.drawable.screen_background_dark_transparent" class="hiddenlink" target="rightframe">screen_background_dark_transparent</A>
+</nobr><br>
+<nobr><A HREF="android.R.drawable.html#android.R.drawable.screen_background_light_transparent" class="hiddenlink" target="rightframe">screen_background_light_transparent</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.scrollbarDefaultDelayBeforeFade" class="hiddenlink" target="rightframe">scrollbarDefaultDelayBeforeFade</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.scrollbarFadeDuration" class="hiddenlink" target="rightframe">scrollbarFadeDuration</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SEARCH_SUGGESTION_CLICKED" class="hiddenlink" target="rightframe">SEARCH_SUGGESTION_CLICKED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED" class="hiddenlink" target="rightframe">SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED" class="hiddenlink" target="rightframe">SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL" class="hiddenlink" target="rightframe">SECONDARY_EMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL_TYPE" class="hiddenlink" target="rightframe">SECONDARY_EMAIL_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_PHONE" class="hiddenlink" target="rightframe">SECONDARY_PHONE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_PHONE_TYPE" class="hiddenlink" target="rightframe">SECONDARY_PHONE_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.SEND_TO_VOICEMAIL" class="hiddenlink" target="rightframe">SEND_TO_VOICEMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.SHOULD_SYNC" class="hiddenlink" target="rightframe">SHOULD_SYNC</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SHOW_OR_CREATE_CONTACT" class="hiddenlink" target="rightframe">SHOW_OR_CREATE_CONTACT</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.smallIcon" class="hiddenlink" target="rightframe">smallIcon</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.STARRED" class="hiddenlink" target="rightframe">STARRED</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_CONTINUATION_MASK" class="hiddenlink" target="rightframe">START_CONTINUATION_MASK</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_FLAG_REDELIVERY" class="hiddenlink" target="rightframe">START_FLAG_REDELIVERY</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_FLAG_RETRY" class="hiddenlink" target="rightframe">START_FLAG_RETRY</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_NOT_STICKY" class="hiddenlink" target="rightframe">START_NOT_STICKY</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_REDELIVER_INTENT" class="hiddenlink" target="rightframe">START_REDELIVER_INTENT</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_STICKY" class="hiddenlink" target="rightframe">START_STICKY</A>
+</nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.START_STICKY_COMPATIBILITY" class="hiddenlink" target="rightframe">START_STICKY_COMPATIBILITY</A>
+</nobr><br>
+<nobr><A HREF="android.R.drawable.html#android.R.drawable.stat_notify_sdcard_prepare" class="hiddenlink" target="rightframe">stat_notify_sdcard_prepare</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.STREAM_DTMF" class="hiddenlink" target="rightframe">STREAM_DTMF</A>
+</nobr><br>
+<nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.SUGGEST_PARAMETER_LIMIT" class="hiddenlink" target="rightframe">SUGGEST_PARAMETER_LIMIT</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.summaryColumn" class="hiddenlink" target="rightframe">summaryColumn</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.supportsUploading" class="hiddenlink" target="rightframe">supportsUploading</A>
+</nobr><br>
+<nobr><A HREF="android.view.SurfaceHolder.html#android.view.SurfaceHolder.SURFACE_TYPE_GPU" class="hiddenlink" target="rightframe">SURFACE_TYPE_GPU</A>
+</nobr><br>
+<nobr><A HREF="android.view.SurfaceHolder.html#android.view.SurfaceHolder.SURFACE_TYPE_HARDWARE" class="hiddenlink" target="rightframe">SURFACE_TYPE_HARDWARE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.SYNC_ERROR" class="hiddenlink" target="rightframe">SYNC_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.SYNC_EVERYTHING" class="hiddenlink" target="rightframe">SYNC_EVERYTHING</A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_ACCOUNT" class="hiddenlink" target="rightframe">SYNC_EXTRAS_ACCOUNT</A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_FORCE" class="hiddenlink" target="rightframe">SYNC_EXTRAS_FORCE</A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_INITIALIZE" class="hiddenlink" target="rightframe">SYNC_EXTRAS_INITIALIZE</A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_MANUAL" class="hiddenlink" target="rightframe">SYNC_EXTRAS_MANUAL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.SYSTEM_ID" class="hiddenlink" target="rightframe">SYSTEM_ID</A>
+</nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_EMAIL" class="hiddenlink" target="rightframe">TERTIARY_EMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_EMAIL_TYPE" class="hiddenlink" target="rightframe">TERTIARY_EMAIL_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_PHONE" class="hiddenlink" target="rightframe">TERTIARY_PHONE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_PHONE_TYPE" class="hiddenlink" target="rightframe">TERTIARY_PHONE_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceSearchResultSubtitle" class="hiddenlink" target="rightframe">textAppearanceSearchResultSubtitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.textAppearanceSearchResultTitle" class="hiddenlink" target="rightframe">textAppearanceSearchResultTitle</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Light_WallpaperSettings" class="hiddenlink" target="rightframe">Theme_Light_WallpaperSettings</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Wallpaper" class="hiddenlink" target="rightframe">Theme_Wallpaper</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Wallpaper_NoTitleBar" class="hiddenlink" target="rightframe">Theme_Wallpaper_NoTitleBar</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_Wallpaper_NoTitleBar_Fullscreen" class="hiddenlink" target="rightframe">Theme_Wallpaper_NoTitleBar_Fullscreen</A>
+</nobr><br>
+<nobr><A HREF="android.R.style.html#android.R.style.Theme_WallpaperSettings" class="hiddenlink" target="rightframe">Theme_WallpaperSettings</A>
+</nobr><br>
+<nobr><A HREF="android.provider.MediaStore.Images.Thumbnails.html#android.provider.MediaStore.Images.Thumbnails.THUMB_DATA" class="hiddenlink" target="rightframe">THUMB_DATA</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.thumbnail" class="hiddenlink" target="rightframe">thumbnail</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.TIMES_CONTACTED" class="hiddenlink" target="rightframe">TIMES_CONTACTED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TITLE" class="hiddenlink" target="rightframe">TITLE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.TITLE_EXTRA_KEY" class="hiddenlink" target="rightframe">TITLE_EXTRA_KEY</A>
+</nobr><br>
+<i>TYPE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<i>TYPE_CUSTOM</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_CUSTOM" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE_CUSTOM" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_CUSTOM" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_FAX_HOME" class="hiddenlink" target="rightframe">TYPE_FAX_HOME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_FAX_WORK" class="hiddenlink" target="rightframe">TYPE_FAX_WORK</A>
+</nobr><br>
+<i>TYPE_HOME</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_HOME" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_HOME" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_MOBILE" class="hiddenlink" target="rightframe">TYPE_MOBILE</A>
+</nobr><br>
+<i>TYPE_OTHER</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_OTHER" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE_OTHER" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_OTHER" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_PAGER" class="hiddenlink" target="rightframe">TYPE_PAGER</A>
+</nobr><br>
+<nobr><A HREF="android.text.InputType.html#android.text.InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS" class="hiddenlink" target="rightframe">TYPE_TEXT_FLAG_NO_SUGGESTIONS</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.TYPE_WALLPAPER" class="hiddenlink" target="rightframe">TYPE_WALLPAPER</A>
+</nobr><br>
+<i>TYPE_WORK</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_WORK" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE_WORK" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_WORK" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>uid</i><br>
+ in
+<nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html#android.app.ActivityManager.RunningAppProcessInfo.uid" class="hiddenlink" target="rightframe">android.app.ActivityManager.RunningAppProcessInfo</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html#android.app.ActivityManager.RunningServiceInfo.uid" class="hiddenlink" target="rightframe">android.app.ActivityManager.RunningServiceInfo</A>
+</nobr><br>
+<nobr><A HREF="android.Manifest.permission.html#android.Manifest.permission.USE_CREDENTIALS" class="hiddenlink" target="rightframe">USE_CREDENTIALS</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.userVisible" class="hiddenlink" target="rightframe">userVisible</A>
+</nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>VALUE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ExtensionsColumns.html#android.provider.Contacts.ExtensionsColumns.VALUE" class="hiddenlink" target="rightframe">android.provider.Contacts.ExtensionsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns.VALUE" class="hiddenlink" target="rightframe">android.provider.Contacts.SettingsColumns</A>
+</nobr><br>
+<nobr><A HREF="android.view.HapticFeedbackConstants.html#android.view.HapticFeedbackConstants.VIRTUAL_KEY" class="hiddenlink" target="rightframe">VIRTUAL_KEY</A>
+</nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperCloseEnterAnimation" class="hiddenlink" target="rightframe">wallpaperCloseEnterAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperCloseExitAnimation" class="hiddenlink" target="rightframe">wallpaperCloseExitAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraCloseEnterAnimation" class="hiddenlink" target="rightframe">wallpaperIntraCloseEnterAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraCloseExitAnimation" class="hiddenlink" target="rightframe">wallpaperIntraCloseExitAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraOpenEnterAnimation" class="hiddenlink" target="rightframe">wallpaperIntraOpenEnterAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperIntraOpenExitAnimation" class="hiddenlink" target="rightframe">wallpaperIntraOpenExitAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperOpenEnterAnimation" class="hiddenlink" target="rightframe">wallpaperOpenEnterAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.wallpaperOpenExitAnimation" class="hiddenlink" target="rightframe">wallpaperOpenExitAnimation</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_AUTO" class="hiddenlink" target="rightframe">WHITE_BALANCE_AUTO</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_CLOUDY_DAYLIGHT" class="hiddenlink" target="rightframe">WHITE_BALANCE_CLOUDY_DAYLIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_DAYLIGHT" class="hiddenlink" target="rightframe">WHITE_BALANCE_DAYLIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_FLUORESCENT" class="hiddenlink" target="rightframe">WHITE_BALANCE_FLUORESCENT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_INCANDESCENT" class="hiddenlink" target="rightframe">WHITE_BALANCE_INCANDESCENT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_SHADE" class="hiddenlink" target="rightframe">WHITE_BALANCE_SHADE</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_TWILIGHT" class="hiddenlink" target="rightframe">WHITE_BALANCE_TWILIGHT</A>
+</nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.WHITE_BALANCE_WARM_FLUORESCENT" class="hiddenlink" target="rightframe">WHITE_BALANCE_WARM_FLUORESCENT</A>
+</nobr><br>
+<nobr><A HREF="android.R.attr.html#android.R.attr.windowShowWallpaper" class="hiddenlink" target="rightframe">windowShowWallpaper</A>
+</nobr><br>
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#V"><font size="-2">V</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.graphics.PixelFormat.html#android.graphics.PixelFormat.YCbCr_422_I" class="hiddenlink" target="rightframe">YCbCr_422_I</A>
+</nobr><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/fields_index_changes.html b/docs/html/sdk/api_diff/5/changes/fields_index_changes.html
new file mode 100644
index 0000000..e77a7a0
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/fields_index_changes.html
@@ -0,0 +1,999 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Field Changes Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Fields" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="fields_index_all.html" class="staysblack">All Fields</a>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<A HREF="fields_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<b>Changes</b>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<A NAME="_"></A>
+<br><b>underscore</b>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns._SYNC_ACCOUNT" class="hiddenlink" target="rightframe">_SYNC_ACCOUNT</A>
+</nobr><br>
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.ACTION" class="hiddenlink" target="rightframe">ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.ATTACH_IMAGE" class="hiddenlink" target="rightframe">ATTACH_IMAGE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.AUTHORITY" class="hiddenlink" target="rightframe">AUTHORITY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.AUX_DATA" class="hiddenlink" target="rightframe">AUX_DATA</A>
+</nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_DEFAULT" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_INVALID" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_INVALID</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_MONO" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_MONO</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.CHANNEL_CONFIGURATION_STEREO" class="hiddenlink" target="rightframe">CHANNEL_CONFIGURATION_STEREO</A>
+</nobr><br>
+<i>COMPANY</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.COMPANY" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.COMPANY" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+<i>CONTENT_DIRECTORY</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.Organizations</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.ContactMethods.html#android.provider.Contacts.People.ContactMethods.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.People.ContactMethods</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.Extensions.html#android.provider.Contacts.People.Extensions.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.Phones.html#android.provider.Contacts.People.Phones.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Phones</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Photos.html#android.provider.Contacts.Photos.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.Photos</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.CONTENT_DIRECTORY" class="hiddenlink" target="rightframe">android.provider.Contacts.Settings</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_EMAIL_ITEM_TYPE" class="hiddenlink" target="rightframe">CONTENT_EMAIL_ITEM_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_EMAIL_TYPE" class="hiddenlink" target="rightframe">CONTENT_EMAIL_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_EMAIL_URI" class="hiddenlink" target="rightframe">CONTENT_EMAIL_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_FILTER_URI" class="hiddenlink" target="rightframe">CONTENT_FILTER_URI</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_FILTER_URL" class="hiddenlink" target="rightframe">CONTENT_FILTER_URL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_IM_ITEM_TYPE" class="hiddenlink" target="rightframe">CONTENT_IM_ITEM_TYPE</A>
+</nobr><br>
+<i>CONTENT_ITEM_TYPE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_ITEM_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_POSTAL_ITEM_TYPE" class="hiddenlink" target="rightframe">CONTENT_POSTAL_ITEM_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_POSTAL_TYPE" class="hiddenlink" target="rightframe">CONTENT_POSTAL_TYPE</A>
+</nobr><br>
+<i>CONTENT_TYPE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+<i>CONTENT_URI</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Organizations</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Photos.html#android.provider.Contacts.Photos.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Photos</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Settings</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.CUSTOM_RINGTONE" class="hiddenlink" target="rightframe">CUSTOM_RINGTONE</A>
+</nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>DATA</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.DATA" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.DATA" class="hiddenlink" target="rightframe">android.provider.Contacts.PhotosColumns</A>
+</nobr><br>
+<i>DEFAULT_SORT_ORDER</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Organizations</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.ContactMethods.html#android.provider.Contacts.People.ContactMethods.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People.ContactMethods</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.Extensions.html#android.provider.Contacts.People.Extensions.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.Phones.html#android.provider.Contacts.People.Phones.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Phones</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Photos.html#android.provider.Contacts.Photos.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Photos</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.DEFAULT_SORT_ORDER" class="hiddenlink" target="rightframe">android.provider.Contacts.Settings</A>
+</nobr><br>
+<i>DELETED_CONTENT_URI</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.DELETED_CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.Groups</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.DELETED_CONTENT_URI" class="hiddenlink" target="rightframe">android.provider.Contacts.People</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.DISPLAY_NAME" class="hiddenlink" target="rightframe">DISPLAY_NAME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.DOWNLOAD_REQUIRED" class="hiddenlink" target="rightframe">DOWNLOAD_REQUIRED</A>
+</nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.EMAIL" class="hiddenlink" target="rightframe">EMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.EMAIL_ISPRIMARY" class="hiddenlink" target="rightframe">EMAIL_ISPRIMARY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.EMAIL_TYPE" class="hiddenlink" target="rightframe">EMAIL_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.EXISTS_ON_SERVER" class="hiddenlink" target="rightframe">EXISTS_ON_SERVER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.EXTRA_CREATE_DESCRIPTION" class="hiddenlink" target="rightframe">EXTRA_CREATE_DESCRIPTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.EXTRA_FORCE_CREATE" class="hiddenlink" target="rightframe">EXTRA_FORCE_CREATE</A>
+</nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.FILTER_CONTACTS_ACTION" class="hiddenlink" target="rightframe">FILTER_CONTACTS_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.FILTER_TEXT_EXTRA_KEY" class="hiddenlink" target="rightframe">FILTER_TEXT_EXTRA_KEY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.FULL_MODE" class="hiddenlink" target="rightframe">FULL_MODE</A>
+</nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.Surface.html#android.view.Surface.GPU" class="hiddenlink" target="rightframe">GPU</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.GROUP_ANDROID_STARRED" class="hiddenlink" target="rightframe">GROUP_ANDROID_STARRED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_ID" class="hiddenlink" target="rightframe">GROUP_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Groups.html#android.provider.Contacts.Groups.GROUP_MY_CONTACTS" class="hiddenlink" target="rightframe">GROUP_MY_CONTACTS</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.GROUP_NAME_EXTRA_KEY" class="hiddenlink" target="rightframe">GROUP_NAME_EXTRA_KEY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_SYNC_ACCOUNT" class="hiddenlink" target="rightframe">GROUP_SYNC_ACCOUNT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.GROUP_SYNC_ID" class="hiddenlink" target="rightframe">GROUP_SYNC_ID</A>
+</nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.Surface.html#android.view.Surface.HARDWARE" class="hiddenlink" target="rightframe">HARDWARE</A>
+</nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.PresenceColumns.html#android.provider.Contacts.PresenceColumns.IM_ACCOUNT" class="hiddenlink" target="rightframe">IM_ACCOUNT</A>
+</nobr><br>
+<i>IM_HANDLE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.IM_HANDLE" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PresenceColumns.html#android.provider.Contacts.PresenceColumns.IM_HANDLE" class="hiddenlink" target="rightframe">android.provider.Contacts.PresenceColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.IM_ISPRIMARY" class="hiddenlink" target="rightframe">IM_ISPRIMARY</A>
+</nobr><br>
+<i>IM_PROTOCOL</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.IM_PROTOCOL" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PresenceColumns.html#android.provider.Contacts.PresenceColumns.IM_PROTOCOL" class="hiddenlink" target="rightframe">android.provider.Contacts.PresenceColumns</A>
+</nobr><br>
+<i>ISPRIMARY</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.ISPRIMARY" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.ISPRIMARY" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.ISPRIMARY" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<nobr><A HREF="android.content.pm.ProviderInfo.html#android.content.pm.ProviderInfo.isSyncable" class="hiddenlink" target="rightframe">isSyncable</A>
+</nobr><br>
+<A NAME="J"></A>
+<br><font size="+2">J</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.JOB_TITLE" class="hiddenlink" target="rightframe">JOB_TITLE</A>
+</nobr><br>
+<A NAME="K"></A>
+<br><font size="+2">K</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns.KEY" class="hiddenlink" target="rightframe">KEY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.KIND" class="hiddenlink" target="rightframe">KIND</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_EMAIL" class="hiddenlink" target="rightframe">KIND_EMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_IM" class="hiddenlink" target="rightframe">KIND_IM</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_ORGANIZATION" class="hiddenlink" target="rightframe">KIND_ORGANIZATION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_PHONE" class="hiddenlink" target="rightframe">KIND_PHONE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.html#android.provider.Contacts.KIND_POSTAL" class="hiddenlink" target="rightframe">KIND_POSTAL</A>
+</nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>LABEL</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.LABEL" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.LABEL" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.LABEL" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.LAST_TIME_CONTACTED" class="hiddenlink" target="rightframe">LAST_TIME_CONTACTED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_ALL_CONTACTS_ACTION" class="hiddenlink" target="rightframe">LIST_ALL_CONTACTS_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_CONTACTS_WITH_PHONES_ACTION" class="hiddenlink" target="rightframe">LIST_CONTACTS_WITH_PHONES_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_DEFAULT" class="hiddenlink" target="rightframe">LIST_DEFAULT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_FREQUENT_ACTION" class="hiddenlink" target="rightframe">LIST_FREQUENT_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_GROUP_ACTION" class="hiddenlink" target="rightframe">LIST_GROUP_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_STARRED_ACTION" class="hiddenlink" target="rightframe">LIST_STARRED_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.LIST_STREQUENT_ACTION" class="hiddenlink" target="rightframe">LIST_STREQUENT_ACTION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.LOCAL_VERSION" class="hiddenlink" target="rightframe">LOCAL_VERSION</A>
+</nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.MEMORY_TYPE_GPU" class="hiddenlink" target="rightframe">MEMORY_TYPE_GPU</A>
+</nobr><br>
+<nobr><A HREF="android.view.WindowManager.LayoutParams.html#android.view.WindowManager.LayoutParams.MEMORY_TYPE_HARDWARE" class="hiddenlink" target="rightframe">MEMORY_TYPE_HARDWARE</A>
+</nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>NAME</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ExtensionsColumns.html#android.provider.Contacts.ExtensionsColumns.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.ExtensionsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.PeopleColumns</A>
+</nobr><br>
+<i>NOTES</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.NOTES" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.NOTES" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.NOTES" class="hiddenlink" target="rightframe">android.provider.Contacts.PeopleColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.NUMBER" class="hiddenlink" target="rightframe">NUMBER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.NUMBER_KEY" class="hiddenlink" target="rightframe">NUMBER_KEY</A>
+</nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>PERSON_ID</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethods</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Extensions.html#android.provider.Contacts.Extensions.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.GroupMembership</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.People.Extensions.html#android.provider.Contacts.People.Extensions.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.People.Extensions</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.Phones</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.PERSON_ID" class="hiddenlink" target="rightframe">android.provider.Contacts.PhotosColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONE" class="hiddenlink" target="rightframe">PHONE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONE_ISPRIMARY" class="hiddenlink" target="rightframe">PHONE_ISPRIMARY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONE_TYPE" class="hiddenlink" target="rightframe">PHONE_TYPE</A>
+</nobr><br>
+<i>PHONETIC_NAME</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.PHONETIC_NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.Intents.Insert</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.PHONETIC_NAME" class="hiddenlink" target="rightframe">android.provider.Contacts.PeopleColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.PHOTO_VERSION" class="hiddenlink" target="rightframe">PHOTO_VERSION</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.POSTAL" class="hiddenlink" target="rightframe">POSTAL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.POSTAL_ISPRIMARY" class="hiddenlink" target="rightframe">POSTAL_ISPRIMARY</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.POSTAL_LOCATION_LATITUDE" class="hiddenlink" target="rightframe">POSTAL_LOCATION_LATITUDE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.POSTAL_LOCATION_LONGITUDE" class="hiddenlink" target="rightframe">POSTAL_LOCATION_LONGITUDE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.POSTAL_TYPE" class="hiddenlink" target="rightframe">POSTAL_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.PRIMARY_EMAIL_ID" class="hiddenlink" target="rightframe">PRIMARY_EMAIL_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.PRIMARY_ORGANIZATION_ID" class="hiddenlink" target="rightframe">PRIMARY_ORGANIZATION_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.PRIMARY_PHONE_ID" class="hiddenlink" target="rightframe">PRIMARY_PHONE_ID</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_AIM" class="hiddenlink" target="rightframe">PROTOCOL_AIM</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_GOOGLE_TALK" class="hiddenlink" target="rightframe">PROTOCOL_GOOGLE_TALK</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_ICQ" class="hiddenlink" target="rightframe">PROTOCOL_ICQ</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_JABBER" class="hiddenlink" target="rightframe">PROTOCOL_JABBER</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_MSN" class="hiddenlink" target="rightframe">PROTOCOL_MSN</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_QQ" class="hiddenlink" target="rightframe">PROTOCOL_QQ</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_SKYPE" class="hiddenlink" target="rightframe">PROTOCOL_SKYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.PROTOCOL_YAHOO" class="hiddenlink" target="rightframe">PROTOCOL_YAHOO</A>
+</nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.GroupMembership.html#android.provider.Contacts.GroupMembership.RAW_CONTENT_URI" class="hiddenlink" target="rightframe">RAW_CONTENT_URI</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_ALL" class="hiddenlink" target="rightframe">ROUTE_ALL</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_BLUETOOTH_A2DP" class="hiddenlink" target="rightframe">ROUTE_BLUETOOTH_A2DP</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_BLUETOOTH_SCO" class="hiddenlink" target="rightframe">ROUTE_BLUETOOTH_SCO</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_EARPIECE" class="hiddenlink" target="rightframe">ROUTE_EARPIECE</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_HEADSET" class="hiddenlink" target="rightframe">ROUTE_HEADSET</A>
+</nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.ROUTE_SPEAKER" class="hiddenlink" target="rightframe">ROUTE_SPEAKER</A>
+</nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SEARCH_SUGGESTION_CLICKED" class="hiddenlink" target="rightframe">SEARCH_SUGGESTION_CLICKED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED" class="hiddenlink" target="rightframe">SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED" class="hiddenlink" target="rightframe">SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL" class="hiddenlink" target="rightframe">SECONDARY_EMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL_TYPE" class="hiddenlink" target="rightframe">SECONDARY_EMAIL_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_PHONE" class="hiddenlink" target="rightframe">SECONDARY_PHONE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.SECONDARY_PHONE_TYPE" class="hiddenlink" target="rightframe">SECONDARY_PHONE_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.SEND_TO_VOICEMAIL" class="hiddenlink" target="rightframe">SEND_TO_VOICEMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.SHOULD_SYNC" class="hiddenlink" target="rightframe">SHOULD_SYNC</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.html#android.provider.Contacts.Intents.SHOW_OR_CREATE_CONTACT" class="hiddenlink" target="rightframe">SHOW_OR_CREATE_CONTACT</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.STARRED" class="hiddenlink" target="rightframe">STARRED</A>
+</nobr><br>
+<nobr><A HREF="android.view.SurfaceHolder.html#android.view.SurfaceHolder.SURFACE_TYPE_GPU" class="hiddenlink" target="rightframe">SURFACE_TYPE_GPU</A>
+</nobr><br>
+<nobr><A HREF="android.view.SurfaceHolder.html#android.view.SurfaceHolder.SURFACE_TYPE_HARDWARE" class="hiddenlink" target="rightframe">SURFACE_TYPE_HARDWARE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhotosColumns.html#android.provider.Contacts.PhotosColumns.SYNC_ERROR" class="hiddenlink" target="rightframe">SYNC_ERROR</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.SYNC_EVERYTHING" class="hiddenlink" target="rightframe">SYNC_EVERYTHING</A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_ACCOUNT" class="hiddenlink" target="rightframe">SYNC_EXTRAS_ACCOUNT</A>
+</nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.SYNC_EXTRAS_FORCE" class="hiddenlink" target="rightframe">SYNC_EXTRAS_FORCE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.GroupsColumns.html#android.provider.Contacts.GroupsColumns.SYSTEM_ID" class="hiddenlink" target="rightframe">SYSTEM_ID</A>
+</nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#V"><font size="-2">V</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_EMAIL" class="hiddenlink" target="rightframe">TERTIARY_EMAIL</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_EMAIL_TYPE" class="hiddenlink" target="rightframe">TERTIARY_EMAIL_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_PHONE" class="hiddenlink" target="rightframe">TERTIARY_PHONE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.Insert.html#android.provider.Contacts.Intents.Insert.TERTIARY_PHONE_TYPE" class="hiddenlink" target="rightframe">TERTIARY_PHONE_TYPE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PeopleColumns.html#android.provider.Contacts.PeopleColumns.TIMES_CONTACTED" class="hiddenlink" target="rightframe">TIMES_CONTACTED</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TITLE" class="hiddenlink" target="rightframe">TITLE</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.Intents.UI.html#android.provider.Contacts.Intents.UI.TITLE_EXTRA_KEY" class="hiddenlink" target="rightframe">TITLE_EXTRA_KEY</A>
+</nobr><br>
+<i>TYPE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<i>TYPE_CUSTOM</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_CUSTOM" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE_CUSTOM" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_CUSTOM" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_FAX_HOME" class="hiddenlink" target="rightframe">TYPE_FAX_HOME</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_FAX_WORK" class="hiddenlink" target="rightframe">TYPE_FAX_WORK</A>
+</nobr><br>
+<i>TYPE_HOME</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_HOME" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_HOME" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_MOBILE" class="hiddenlink" target="rightframe">TYPE_MOBILE</A>
+</nobr><br>
+<i>TYPE_OTHER</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_OTHER" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE_OTHER" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_OTHER" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_PAGER" class="hiddenlink" target="rightframe">TYPE_PAGER</A>
+</nobr><br>
+<i>TYPE_WORK</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html#android.provider.Contacts.ContactMethodsColumns.TYPE_WORK" class="hiddenlink" target="rightframe">android.provider.Contacts.ContactMethodsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.OrganizationColumns.html#android.provider.Contacts.OrganizationColumns.TYPE_WORK" class="hiddenlink" target="rightframe">android.provider.Contacts.OrganizationColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.PhonesColumns.html#android.provider.Contacts.PhonesColumns.TYPE_WORK" class="hiddenlink" target="rightframe">android.provider.Contacts.PhonesColumns</A>
+</nobr><br>
+<A NAME="V"></A>
+<br><font size="+2">V</font>
+<a href="#_"><font size="-2">underscore</font></a>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#J"><font size="-2">J</font></a>
+<a href="#K"><font size="-2">K</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>VALUE</i><br>
+ in
+<nobr><A HREF="android.provider.Contacts.ExtensionsColumns.html#android.provider.Contacts.ExtensionsColumns.VALUE" class="hiddenlink" target="rightframe">android.provider.Contacts.ExtensionsColumns</A>
+</nobr><br>
+ in
+<nobr><A HREF="android.provider.Contacts.SettingsColumns.html#android.provider.Contacts.SettingsColumns.VALUE" class="hiddenlink" target="rightframe">android.provider.Contacts.SettingsColumns</A>
+</nobr><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/fields_index_removals.html b/docs/html/sdk/api_diff/5/changes/fields_index_removals.html
new file mode 100644
index 0000000..be3f17e
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/fields_index_removals.html
@@ -0,0 +1,61 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Field Removals Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Fields" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="fields_index_all.html" class="staysblack">All Fields</a>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<A HREF="fields_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<A HREF="fields_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/java.lang.String.html b/docs/html/sdk/api_diff/5/changes/java.lang.String.html
new file mode 100644
index 0000000..5077440
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/java.lang.String.html
@@ -0,0 +1,160 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+java.lang.String
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class java.lang.<A HREF="../../../../reference/java/lang/String.html" target="_top"><font size="+2"><code>String</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.lang.String.ctor_changed()"></A>
+ <nobr><A HREF="../../../../reference/java/lang/String.html#String()" target="_top"><code>String</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.lang.String.ctor_changed(byte[])"></A>
+ <nobr><A HREF="../../../../reference/java/lang/String.html#String(byte[])" target="_top"><code>String</code></A>(<code>byte[]</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.lang.String.ctor_changed(byte[], int)"></A>
+ <nobr><A HREF="../../../../reference/java/lang/String.html#String(byte[], int)" target="_top"><code>String</code></A>(<code>byte[],</nobr> int<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.lang.String.ctor_changed(byte[], int, int)"></A>
+ <nobr><A HREF="../../../../reference/java/lang/String.html#String(byte[], int, int)" target="_top"><code>String</code></A>(<code>byte[],</nobr> int<nobr>,</nobr> int<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.lang.String.ctor_changed(byte[], int, int, int)"></A>
+ <nobr><A HREF="../../../../reference/java/lang/String.html#String(byte[], int, int, int)" target="_top"><code>String</code></A>(<code>byte[],</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/java.net.Socket.html b/docs/html/sdk/api_diff/5/changes/java.net.Socket.html
new file mode 100644
index 0000000..ca62b37
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/java.net.Socket.html
@@ -0,0 +1,160 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+java.net.Socket
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class java.net.<A HREF="../../../../reference/java/net/Socket.html" target="_top"><font size="+2"><code>Socket</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.net.Socket.ctor_changed()"></A>
+ <nobr><A HREF="../../../../reference/java/net/Socket.html#Socket()" target="_top"><code>Socket</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.net.Socket.ctor_changed(java.lang.String, int)"></A>
+ <nobr><A HREF="../../../../reference/java/net/Socket.html#Socket(java.lang.String, int)" target="_top"><code>Socket</code></A>(<code>String,</nobr> int<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.net.Socket.ctor_changed(java.lang.String, int, java.net.InetAddress, int)"></A>
+ <nobr><A HREF="../../../../reference/java/net/Socket.html#Socket(java.lang.String, int, java.net.InetAddress, int)" target="_top"><code>Socket</code></A>(<code>String,</nobr> int<nobr>,</nobr> InetAddress<nobr>,</nobr> int<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.net.Socket.ctor_changed(java.net.Proxy)"></A>
+ <nobr><A HREF="../../../../reference/java/net/Socket.html#Socket(java.net.Proxy)" target="_top"><code>Socket</code></A>(<code>Proxy</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.net.Socket.ctor_changed(java.net.SocketImpl)"></A>
+ <nobr><A HREF="../../../../reference/java/net/Socket.html#Socket(java.net.SocketImpl)" target="_top"><code>Socket</code></A>(<code>SocketImpl</code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/java.util.Date.html b/docs/html/sdk/api_diff/5/changes/java.util.Date.html
new file mode 100644
index 0000000..3bf23c2
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/java.util.Date.html
@@ -0,0 +1,133 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+java.util.Date
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Class java.util.<A HREF="../../../../reference/java/util/Date.html" target="_top"><font size="+2"><code>Date</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Constructors" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=3>Changed Constructors</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.util.Date.ctor_changed()"></A>
+ <nobr><A HREF="../../../../reference/java/util/Date.html#Date()" target="_top"><code>Date</code></A>() </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.util.Date.ctor_changed(int, int, int, int, int, int)"></A>
+ <nobr><A HREF="../../../../reference/java/util/Date.html#Date(int, int, int, int, int, int)" target="_top"><code>Date</code></A>(<code>int,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr>,</nobr> int<nobr><nobr></code>) </nobr>
+ </TD>
+ <TD VALIGN="TOP" WIDTH="30%">
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="methods"></a>
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/java.util.concurrent.BlockingQueue.html b/docs/html/sdk/api_diff/5/changes/java.util.concurrent.BlockingQueue.html
new file mode 100644
index 0000000..f3dc420
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/java.util.concurrent.BlockingQueue.html
@@ -0,0 +1,129 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+java.util.concurrent.BlockingQueue
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Interface java.util.concurrent.<A HREF="../../../../reference/java/util/concurrent/BlockingQueue.html" target="_top"><font size="+2"><code>BlockingQueue</code></font></A>
+</H2>
+<a NAME="constructors"></a>
+<a NAME="methods"></a>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Methods" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Methods</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.util.concurrent.BlockingQueue.contains_added(java.lang.Object)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/java/util/concurrent/BlockingQueue.html#contains(java.lang.Object)" target="_top"><code>contains</code></A>(<code>Object</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="java.util.concurrent.BlockingQueue.remove_added(java.lang.Object)"></A>
+ <nobr><code>boolean</code> <A HREF="../../../../reference/java/util/concurrent/BlockingQueue.html#remove(java.lang.Object)" target="_top"><code>remove</code></A>(<code>Object</code>)</nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<a NAME="fields"></a>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/jdiff_help.html b/docs/html/sdk/api_diff/5/changes/jdiff_help.html
new file mode 100644
index 0000000..74e2508
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/jdiff_help.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+JDiff Help
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<TABLE summary="Navigation bar" BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
+<TR>
+<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
+ <TABLE summary="Navigation bar" BORDER="0" CELLPADDING="0" CELLSPACING="3">
+ <TR ALIGN="center" VALIGN="top">
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../reference/index.html" target="_top"><FONT CLASS="NavBarFont1"><B><code>5</code></B></FONT></A> </TD>
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="changes-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
+ <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="jdiff_statistics.html"><FONT CLASS="NavBarFont1"><B>Statistics</B></FONT></A> </TD>
+ <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT> </TD>
+ </TR>
+ </TABLE>
+</TD>
+<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM><b>Generated by<br><a href="http://www.jdiff.org" class="staysblack" target="_top">JDiff</a></b></EM></TD>
+</TR>
+<TR>
+ <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell2"><FONT SIZE="-2"></FONT>
+</TD>
+ <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell2"><FONT SIZE="-2">
+ <A HREF="../changes.html" TARGET="_top"><B>FRAMES</B></A>
+ <A HREF="jdiff_help.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
+</TR>
+</TABLE>
+<HR>
+<!-- End of nav bar -->
+<center>
+<H1>JDiff Documentation</H1>
+</center>
+<BLOCKQUOTE>
+JDiff is a <a href="http://java.sun.com/j2se/javadoc/" target="_top">Javadoc</a> doclet which generates a report of the API differences between two versions of a product. It does not report changes in Javadoc comments, or changes in what a class or method does.
+This help page describes the different parts of the output from JDiff.
+</BLOCKQUOTE>
+<BLOCKQUOTE>
+ See the reference page in the <a href="http://www.jdiff.org">source for JDiff</a> for information about how to generate a report like this one.
+</BLOCKQUOTE>
+<BLOCKQUOTE>
+The indexes shown in the top-left frame help show each type of change in more detail. The index "All Differences" contains all the differences between the APIs, in alphabetical order.
+These indexes all use the same format:
+<ul>
+<li>Removed packages, classes, constructors, methods and fields are <strike>struck through</strike>.</li>
+<li>Added packages, classes, constructors, methods and fields appear in <b>bold</b>.</li>
+<li>Changed packages, classes, constructors, methods and fields appear in normal text.</li>
+</ul>
+</BLOCKQUOTE>
+<BLOCKQUOTE>
+You can always tell when you are reading a JDiff page, rather than a Javadoc page, by the color of the index bar and the color of the background.
+Links which take you to a Javadoc page are always in a <code>typewriter</code> font.
+Just like Javadoc, all interface names are in <i>italic</i>, and class names are not italicized. Where there are multiple entries in an index with the same name, the heading for them is also in italics, but is not a link.
+</BLOCKQUOTE>
+<BLOCKQUOTE>
+<H3><b><code>Javadoc</code></b></H3>
+This is a link to the <a href="../../../../reference/index.html" target="_top">top-level</a> Javadoc page for the new version of the product.
+</BLOCKQUOTE>
+<BLOCKQUOTE>
+<H3>Overview</H3>
+The <a href="changes-summary.html">overview</a> is the top-level summary of what was removed, added and changed between versions.
+</BLOCKQUOTE>
+<BLOCKQUOTE>
+<H3>Package</H3>
+This is a link to the package containing the current changed class or interface.
+</BLOCKQUOTE>
+<BLOCKQUOTE>
+<H3>Class</H3>
+This is highlighted when you are looking at the changed class or interface.
+</BLOCKQUOTE>
+<BLOCKQUOTE>
+<H3>Text Changes</H3>
+This is a link to the top-level index of all documentation changes for the current package or class.
+If it is not present, then there are no documentation changes for the current package or class.
+This link can be removed entirely by not using the <code>-docchanges</code> option.
+</BLOCKQUOTE>
+<BLOCKQUOTE>
+<H3>Statistics</H3>
+This is a link to a page which shows statistics about the changes between the two APIs.
+This link can be removed entirely by not using the <code>-stats</code> option.
+</BLOCKQUOTE>
+<BLOCKQUOTE>
+<H3>Help</H3>
+A link to this Help page for JDiff.
+</BLOCKQUOTE>
+<BLOCKQUOTE>
+<H3>Prev/Next</H3>
+These links take you to the previous and next changed package or class.
+</BLOCKQUOTE>
+<BLOCKQUOTE>
+<H3>Frames/No Frames</H3>
+These links show and hide the HTML frames. All pages are available with or without frames.
+</BLOCKQUOTE>
+<BLOCKQUOTE>
+<H2>Complex Changes</H2>
+There are some complex changes which can occur between versions, for example, when two or more methods with the same name change simultaneously, or when a method or field is moved into or from a superclass.
+In these cases, the change will be seen as a removal and an addition, rather than as a change. Unexpected removals or additions are often part of one of these type of changes.
+</BLOCKQUOTE>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/jdiff_statistics.html b/docs/html/sdk/api_diff/5/changes/jdiff_statistics.html
new file mode 100644
index 0000000..f3fcd06
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/jdiff_statistics.html
@@ -0,0 +1,989 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+API Change Statistics
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<body class="gc-documentation">
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;xborder-bottom:none;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Version:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Version:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="../changes.html" target="_top">Top of Report</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<h1>API Change Statistics</h1>
+<p>
+The percent change statistic reported for all elements in the "to" API Level specification is defined recursively as follows:</p>
+<pre>
+Percentage difference = 100 * (added + removed + 2*changed)
+ -----------------------------------
+ sum of public elements in BOTH APIs
+</pre>
+<p>where <code>added</code> is the number of packages added, <code>removed</code> is the number of packages removed, and <code>changed</code> is the number of packages changed.
+This definition is applied recursively for the classes and their program elements, so the value for a changed package will be less than 1, unless every class in that package has changed.
+The definition ensures that if all packages are removed and all new packages are
+added, the change will be 100%. Values are rounded here, so a value of 0% indicates a percentage difference of less than 0.5%.</p>
+<p>The overall difference between the two APIs is approximately <span style="color:222;font-weight:bold;">2%</span>.
+</p>
+<br><h2>Contents</h2>
+<dl><dt><a href="#packages">Changed Packages</a></dt> <dd>Sorted by percentage difference</dd>
+<dt><a href="#classes">Changed Classes and <i>Interfaces</i></a></dt><dd>Sorted by percentage difference</dd>
+<dt><a href="#numbers">Total of Differences</a></dt><dd>Listed by number and type</dd></dl>
+<br>
+<a name="packages"></a>
+<h2>Changed Packages, Sorted by Percentage Difference</h2>
+<TABLE summary="Packages sorted by percentage difference" WIDTH="100%">
+<TR>
+ <TH WIDTH="10%">Percentage Difference</TH>
+ <TH>Package</TH>
+</TR>
+<TR>
+ <TD ALIGN="center">43</TD>
+ <TD><A HREF="pkg_android.provider.html">android.provider</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">14</TD>
+ <TD><A HREF="pkg_android.content.html">android.content</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">13</TD>
+ <TD><A HREF="pkg_android.webkit.html">android.webkit</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">10</TD>
+ <TD><A HREF="pkg_dalvik.system.html">dalvik.system</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">6</TD>
+ <TD><A HREF="pkg_android.opengl.html">android.opengl</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">5</TD>
+ <TD><A HREF="pkg_android.hardware.html">android.hardware</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">5</TD>
+ <TD><A HREF="pkg_android.content.pm.html">android.content.pm</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">5</TD>
+ <TD><A HREF="pkg_android.location.html">android.location</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">4</TD>
+ <TD><A HREF="pkg_java.util.concurrent.locks.html">java.util.concurrent.locks</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">4</TD>
+ <TD><A HREF="pkg_android.app.html">android.app</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">4</TD>
+ <TD><A HREF="pkg_android.telephony.html">android.telephony</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">3</TD>
+ <TD><A HREF="pkg_android.media.html">android.media</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">3</TD>
+ <TD><A HREF="pkg_android.text.format.html">android.text.format</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="pkg_android.database.sqlite.html">android.database.sqlite</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="pkg_android.os.html">android.os</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="pkg_android.text.style.html">android.text.style</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="pkg_android.view.html">android.view</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="pkg_android.util.html">android.util</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="pkg_android.graphics.drawable.html">android.graphics.drawable</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="pkg_android.widget.html">android.widget</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="pkg_android.test.mock.html">android.test.mock</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="pkg_android.database.html">android.database</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="pkg_android.inputmethodservice.html">android.inputmethodservice</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="pkg_android.test.html">android.test</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="pkg_android.html">android</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="pkg_android.content.res.html">android.content.res</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="pkg_java.util.concurrent.html">java.util.concurrent</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="pkg_java.net.html">java.net</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="pkg_android.text.html">android.text</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="pkg_android.view.animation.html">android.view.animation</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="pkg_java.util.html">java.util</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="pkg_java.lang.html">java.lang</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="pkg_android.graphics.html">android.graphics</A></TD>
+</TR>
+</TABLE>
+<br>
+<a name="classes"></a>
+<h2>Changed Classes and <i>Interfaces</i>, Sorted by Percentage Difference</h2>
+<TABLE summary="Classes sorted by percentage difference" WIDTH="100%">
+<TR WIDTH="20%">
+ <TH WIDTH="10%"><b>Percentage<br>Difference</b></TH>
+ <TH><b>Class or <i>Interface</i></b></TH>
+</TR>
+<TR>
+ <TD ALIGN="center">73</TD>
+ <TD><A HREF="android.media.AudioFormat.html">
+android.media.AudioFormat</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">70</TD>
+ <TD><A HREF="android.hardware.Camera.Parameters.html">
+android.hardware.Camera.Parameters</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">62</TD>
+ <TD><A HREF="android.provider.Contacts.Phones.html">
+android.provider.Contacts.Phones</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">57</TD>
+ <TD><A HREF="android.provider.Contacts.SettingsColumns.html">
+<i>android.provider.Contacts.SettingsColumns</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">55</TD>
+ <TD><A HREF="android.provider.Contacts.People.html">
+android.provider.Contacts.People</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">52</TD>
+ <TD><A HREF="android.provider.Contacts.GroupMembership.html">
+android.provider.Contacts.GroupMembership</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.html">
+android.provider.Contacts</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.ContactMethods.html">
+android.provider.Contacts.ContactMethods</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.ContactMethodsColumns.html">
+<i>android.provider.Contacts.ContactMethodsColumns</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.Extensions.html">
+android.provider.Contacts.Extensions</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.ExtensionsColumns.html">
+<i>android.provider.Contacts.ExtensionsColumns</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.Groups.html">
+android.provider.Contacts.Groups</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.GroupsColumns.html">
+<i>android.provider.Contacts.GroupsColumns</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.Intents.html">
+android.provider.Contacts.Intents</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.Intents.Insert.html">
+android.provider.Contacts.Intents.Insert</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.Intents.UI.html">
+android.provider.Contacts.Intents.UI</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.OrganizationColumns.html">
+<i>android.provider.Contacts.OrganizationColumns</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.Organizations.html">
+android.provider.Contacts.Organizations</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.People.ContactMethods.html">
+android.provider.Contacts.People.ContactMethods</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.People.Extensions.html">
+android.provider.Contacts.People.Extensions</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.People.Phones.html">
+android.provider.Contacts.People.Phones</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.PeopleColumns.html">
+<i>android.provider.Contacts.PeopleColumns</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.PhonesColumns.html">
+<i>android.provider.Contacts.PhonesColumns</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.Photos.html">
+android.provider.Contacts.Photos</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.PhotosColumns.html">
+<i>android.provider.Contacts.PhotosColumns</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.PresenceColumns.html">
+<i>android.provider.Contacts.PresenceColumns</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.provider.Contacts.Settings.html">
+android.provider.Contacts.Settings</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.webkit.Plugin.html">
+android.webkit.Plugin</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.webkit.PluginData.html">
+android.webkit.PluginData</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">50</TD>
+ <TD><A HREF="android.webkit.PluginList.html">
+android.webkit.PluginList</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">36</TD>
+ <TD><A HREF="android.webkit.WebViewClient.html">
+android.webkit.WebViewClient</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">35</TD>
+ <TD><A HREF="android.webkit.UrlInterceptRegistry.html">
+android.webkit.UrlInterceptRegistry</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">33</TD>
+ <TD><A HREF="android.telephony.NeighboringCellInfo.html">
+android.telephony.NeighboringCellInfo</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">30</TD>
+ <TD><A HREF="android.app.Service.html">
+android.app.Service</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">29</TD>
+ <TD><A HREF="android.content.ContentResolver.html">
+android.content.ContentResolver</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">26</TD>
+ <TD><A HREF="android.os.BatteryManager.html">
+android.os.BatteryManager</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">25</TD>
+ <TD><A HREF="android.os.Debug.MemoryInfo.html">
+android.os.Debug.MemoryInfo</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">25</TD>
+ <TD><A HREF="android.app.NotificationManager.html">
+android.app.NotificationManager</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">25</TD>
+ <TD><A HREF="android.webkit.UrlInterceptHandler.html">
+<i>android.webkit.UrlInterceptHandler</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">25</TD>
+ <TD><A HREF="dalvik.system.AllocationLimitError.html">
+dalvik.system.AllocationLimitError</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">25</TD>
+ <TD><A HREF="dalvik.system.PotentialDeadlockError.html">
+dalvik.system.PotentialDeadlockError</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">25</TD>
+ <TD><A HREF="dalvik.system.StaleDexCacheError.html">
+dalvik.system.StaleDexCacheError</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">22</TD>
+ <TD><A HREF="android.view.MotionEvent.html">
+android.view.MotionEvent</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">21</TD>
+ <TD><A HREF="android.app.ActivityManager.RunningServiceInfo.html">
+android.app.ActivityManager.RunningServiceInfo</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">20</TD>
+ <TD><A HREF="android.widget.SimpleCursorTreeAdapter.html">
+android.widget.SimpleCursorTreeAdapter</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">18</TD>
+ <TD><A HREF="android.graphics.drawable.BitmapDrawable.html">
+android.graphics.drawable.BitmapDrawable</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">17</TD>
+ <TD><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html">
+android.app.ActivityManager.RunningAppProcessInfo</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">17</TD>
+ <TD><A HREF="android.widget.MediaController.MediaPlayerControl.html">
+<i>android.widget.MediaController.MediaPlayerControl</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">16</TD>
+ <TD><A HREF="android.app.LauncherActivity.html">
+android.app.LauncherActivity</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">16</TD>
+ <TD><A HREF="android.view.SurfaceView.html">
+android.view.SurfaceView</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">16</TD>
+ <TD><A HREF="dalvik.system.TemporaryDirectory.html">
+dalvik.system.TemporaryDirectory</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">16</TD>
+ <TD><A HREF="dalvik.system.TouchDex.html">
+dalvik.system.TouchDex</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">14</TD>
+ <TD><A HREF="android.app.ActivityManager.html">
+android.app.ActivityManager</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">14</TD>
+ <TD><A HREF="android.app.IntentService.html">
+android.app.IntentService</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">14</TD>
+ <TD><A HREF="android.graphics.drawable.Drawable.ConstantState.html">
+android.graphics.drawable.Drawable.ConstantState</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">14</TD>
+ <TD><A HREF="android.text.format.Formatter.html">
+android.text.format.Formatter</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">14</TD>
+ <TD><A HREF="android.text.style.ImageSpan.html">
+android.text.style.ImageSpan</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">14</TD>
+ <TD><A HREF="android.view.HapticFeedbackConstants.html">
+android.view.HapticFeedbackConstants</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">14</TD>
+ <TD><A HREF="android.view.KeyEvent.Callback.html">
+<i>android.view.KeyEvent.Callback</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">12</TD>
+ <TD><A HREF="android.hardware.Camera.html">
+android.hardware.Camera</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">12</TD>
+ <TD><A HREF="android.webkit.WebChromeClient.html">
+android.webkit.WebChromeClient</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">11</TD>
+ <TD><A HREF="android.database.AbstractWindowedCursor.html">
+android.database.AbstractWindowedCursor</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">11</TD>
+ <TD><A HREF="android.text.style.AbsoluteSizeSpan.html">
+android.text.style.AbsoluteSizeSpan</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">10</TD>
+ <TD><A HREF="android.test.InstrumentationTestCase.html">
+android.test.InstrumentationTestCase</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">10</TD>
+ <TD><A HREF="dalvik.system.VMStack.html">
+dalvik.system.VMStack</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">10</TD>
+ <TD><A HREF="java.net.Socket.html">
+java.net.Socket</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">10</TD>
+ <TD><A HREF="java.util.concurrent.BlockingQueue.html">
+<i>java.util.concurrent.BlockingQueue</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">9</TD>
+ <TD><A HREF="android.content.pm.ServiceInfo.html">
+android.content.pm.ServiceInfo</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">9</TD>
+ <TD><A HREF="android.inputmethodservice.AbstractInputMethodService.html">
+android.inputmethodservice.AbstractInputMethodService</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">9</TD>
+ <TD><A HREF="android.os.HandlerThread.html">
+android.os.HandlerThread</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">8</TD>
+ <TD><A HREF="android.telephony.TelephonyManager.html">
+android.telephony.TelephonyManager</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">8</TD>
+ <TD><A HREF="android.widget.AutoCompleteTextView.html">
+android.widget.AutoCompleteTextView</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">8</TD>
+ <TD><A HREF="android.provider.MediaStore.Images.Thumbnails.html">
+android.provider.MediaStore.Images.Thumbnails</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">8</TD>
+ <TD><A HREF="android.graphics.drawable.NinePatchDrawable.html">
+android.graphics.drawable.NinePatchDrawable</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">7</TD>
+ <TD><A HREF="android.os.Build.VERSION_CODES.html">
+android.os.Build.VERSION_CODES</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">7</TD>
+ <TD><A HREF="android.widget.VideoView.html">
+android.widget.VideoView</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">7</TD>
+ <TD><A HREF="android.media.AudioManager.html">
+android.media.AudioManager</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">6</TD>
+ <TD><A HREF="java.lang.String.html">
+java.lang.String</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">6</TD>
+ <TD><A HREF="android.view.Window.Callback.html">
+<i>android.view.Window.Callback</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">6</TD>
+ <TD><A HREF="java.util.Date.html">
+java.util.Date</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">6</TD>
+ <TD><A HREF="dalvik.system.VMRuntime.html">
+dalvik.system.VMRuntime</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">6</TD>
+ <TD><A HREF="dalvik.system.Zygote.html">
+dalvik.system.Zygote</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">5</TD>
+ <TD><A HREF="android.content.BroadcastReceiver.html">
+android.content.BroadcastReceiver</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">5</TD>
+ <TD><A HREF="android.text.TextPaint.html">
+android.text.TextPaint</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">5</TD>
+ <TD><A HREF="android.view.SurfaceHolder.html">
+<i>android.view.SurfaceHolder</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">5</TD>
+ <TD><A HREF="android.content.Context.html">
+android.content.Context</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">5</TD>
+ <TD><A HREF="android.test.AndroidTestRunner.html">
+android.test.AndroidTestRunner</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">5</TD>
+ <TD><A HREF="android.webkit.WebSettings.html">
+android.webkit.WebSettings</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">4</TD>
+ <TD><A HREF="android.database.CursorWindow.html">
+android.database.CursorWindow</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">4</TD>
+ <TD><A HREF="android.view.KeyEvent.html">
+android.view.KeyEvent</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">4</TD>
+ <TD><A HREF="android.opengl.GLSurfaceView.html">
+android.opengl.GLSurfaceView</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">3</TD>
+ <TD><A HREF="android.content.pm.ProviderInfo.html">
+android.content.pm.ProviderInfo</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">3</TD>
+ <TD><A HREF="android.view.Surface.html">
+android.view.Surface</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">3</TD>
+ <TD><A HREF="android.provider.Settings.html">
+android.provider.Settings</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">3</TD>
+ <TD><A HREF="android.content.res.Configuration.html">
+android.content.res.Configuration</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">3</TD>
+ <TD><A HREF="android.test.mock.MockPackageManager.html">
+android.test.mock.MockPackageManager</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">3</TD>
+ <TD><A HREF="android.view.ViewConfiguration.html">
+android.view.ViewConfiguration</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">3</TD>
+ <TD><A HREF="android.view.WindowManager.LayoutParams.html">
+android.view.WindowManager.LayoutParams</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">3</TD>
+ <TD><A HREF="android.R.style.html">
+android.R.style</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">3</TD>
+ <TD><A HREF="android.location.LocationManager.html">
+android.location.LocationManager</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="android.app.SearchManager.html">
+android.app.SearchManager</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="android.app.Activity.html">
+android.app.Activity</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="android.telephony.PhoneStateListener.html">
+android.telephony.PhoneStateListener</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="android.app.Dialog.html">
+android.app.Dialog</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="android.content.pm.ResolveInfo.html">
+android.content.pm.ResolveInfo</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="android.content.pm.PackageInfo.html">
+android.content.pm.PackageInfo</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="android.R.attr.html">
+android.R.attr</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="android.content.Intent.html">
+android.content.Intent</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="android.content.pm.PackageManager.html">
+android.content.pm.PackageManager</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="android.content.ContentProvider.html">
+android.content.ContentProvider</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">2</TD>
+ <TD><A HREF="android.graphics.PixelFormat.html">
+android.graphics.PixelFormat</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.view.animation.Animation.html">
+android.view.animation.Animation</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.database.sqlite.SQLiteDatabase.html">
+android.database.sqlite.SQLiteDatabase</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.webkit.WebView.html">
+android.webkit.WebView</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.Manifest.permission.html">
+android.Manifest.permission</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.webkit.CallbackProxy.html">
+android.webkit.CallbackProxy</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.text.InputType.html">
+<i>android.text.InputType</i></A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.test.mock.MockContext.html">
+android.test.mock.MockContext</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.app.Notification.html">
+android.app.Notification</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.database.DatabaseUtils.html">
+android.database.DatabaseUtils</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.content.ContextWrapper.html">
+android.content.ContextWrapper</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.telephony.PhoneNumberUtils.html">
+android.telephony.PhoneNumberUtils</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.media.MediaPlayer.html">
+android.media.MediaPlayer</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="dalvik.system.VMDebug.html">
+dalvik.system.VMDebug</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.content.pm.ActivityInfo.html">
+android.content.pm.ActivityInfo</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.graphics.drawable.Drawable.html">
+android.graphics.drawable.Drawable</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center">1</TD>
+ <TD><A HREF="android.view.View.html">
+android.view.View</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="android.R.drawable.html">
+android.R.drawable</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="android.provider.Settings.System.html">
+android.provider.Settings.System</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="android.text.format.DateUtils.html">
+android.text.format.DateUtils</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="android.inputmethodservice.InputMethodService.html">
+android.inputmethodservice.InputMethodService</A></TD>
+</TR>
+<TR>
+ <TD ALIGN="center"><1</TD>
+ <TD><A HREF="android.media.ToneGenerator.html">
+android.media.ToneGenerator</A></TD>
+</TR>
+</TABLE>
+<br>
+<a name="numbers"></a>
+<h2>Total of Differences, by Number and Type</h2>
+<p>
+The table below lists the numbers of program elements (packages, classes, constructors, methods, and fields) that were removed, added or changed. The table includes only the highest-level program elements — that is, if a class with two methods was added, the number of methods added does not include those two methods, but the number of classes added does include that class.
+</p>
+<TABLE summary="Number of differences" WIDTH="100%">
+<TR>
+ <TH COLSPAN=5 NOWRAP>
+ Number of Differences</TH>
+</TR>
+<TR>
+ <TH> </TD>
+ <TH ALIGN="center"><b>Removals</b></TH>
+ <TH ALIGN="center"><b>Additions</b></TH>
+ <TH ALIGN="center"><b>Changes</b></TH>
+ <TH ALIGN="center"><b>Total</b></TH>
+</TR>
+<TR>
+ <TD>Packages</TD>
+ <TD ALIGN="right">0</TD>
+ <TD ALIGN="right">3</TD>
+ <TD ALIGN="right">33</TD>
+ <TD ALIGN="right">36</TD>
+</TR>
+<TR>
+ <TD>Classes and <i>Interfaces</i></TD>
+ <TD ALIGN="right">0</TD>
+ <TD ALIGN="right">85</TD>
+ <TD ALIGN="right">132</TD>
+ <TD ALIGN="right">217</TD>
+</TR>
+<TR>
+ <TD>Constructors</TD>
+ <TD ALIGN="right">2</TD>
+ <TD ALIGN="right">4</TD>
+ <TD ALIGN="right">26</TD>
+ <TD ALIGN="right">32</TD>
+</TR>
+<TR>
+ <TD>Methods</TD>
+ <TD ALIGN="right">0</TD>
+ <TD ALIGN="right">202</TD>
+ <TD ALIGN="right">67</TD>
+ <TD ALIGN="right">269</TD>
+</TR>
+<TR>
+ <TD>Fields</TD>
+ <TD ALIGN="right">0</TD>
+ <TD ALIGN="right">240</TD>
+ <TD ALIGN="right">205</TD>
+ <TD ALIGN="right">445</TD>
+</TR>
+<TR>
+ <TD><b>Total</b></TD>
+ <TD ALIGN="right">2</TD>
+ <TD ALIGN="right">534</TD>
+ <TD ALIGN="right">463</TD>
+ <TD ALIGN="right">999</TD>
+</TR>
+</TABLE>
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY></HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/jdiff_topleftframe.html b/docs/html/sdk/api_diff/5/changes/jdiff_topleftframe.html
new file mode 100644
index 0000000..2191eff
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/jdiff_topleftframe.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Android API Version Differences
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<table class="jdiffIndex" summary="Links to diff index files" BORDER="0" WIDTH="100%" cellspacing="0" cellpadding="0">
+<TR>
+ <th class="indexHeader" nowrap>
+ Select a Diffs Index:</th>
+</TR>
+<TR>
+ <TD><FONT CLASS="indexText" size="-2"><A HREF="alldiffs_index_all.html" TARGET="bottomleftframe">All Differences</A></FONT><br></TD>
+</TR>
+<TR>
+ <TD NOWRAP><FONT CLASS="indexText" size="-2"><A HREF="packages_index_all.html" TARGET="bottomleftframe">By Package</A></FONT><br></TD>
+</TR>
+<TR>
+ <TD NOWRAP><FONT CLASS="indexText" size="-2"><A HREF="classes_index_all.html" TARGET="bottomleftframe">By Class</A></FONT><br></TD>
+</TR>
+<TR>
+ <TD NOWRAP><FONT CLASS="indexText" size="-2"><A HREF="constructors_index_all.html" TARGET="bottomleftframe">By Constructor</A></FONT><br></TD>
+</TR>
+<TR>
+ <TD NOWRAP><FONT CLASS="indexText" size="-2"><A HREF="methods_index_all.html" TARGET="bottomleftframe">By Method</A></FONT><br></TD>
+</TR>
+<TR>
+ <TD NOWRAP><FONT CLASS="indexText" size="-2"><A HREF="fields_index_all.html" TARGET="bottomleftframe">By Field</A></FONT><br></TD>
+</TR>
+</TABLE>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/methods_index_additions.html b/docs/html/sdk/api_diff/5/changes/methods_index_additions.html
new file mode 100644
index 0000000..f78f69e
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/methods_index_additions.html
@@ -0,0 +1,957 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Method Additions Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Methods" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="methods_index_all.html" class="staysblack">All Methods</a>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<b>Additions</b>
+ <br>
+<A HREF="methods_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>acquireContentProviderClient</i><br>
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.acquireContentProviderClient_added(android.net.Uri)" class="hiddenlink" target="rightframe">type <b>
+(<code>Uri</code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.acquireContentProviderClient_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+<nobr><A HREF="android.location.LocationManager.html#android.location.LocationManager.addNmeaListener_added(android.location.GpsStatus.NmeaListener)" class="hiddenlink" target="rightframe"><b>addNmeaListener</b>
+(<code>NmeaListener</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.addStatusChangeListener_added(int, android.content.SyncStatusObserver)" class="hiddenlink" target="rightframe"><b>addStatusChangeListener</b>
+(<code>int, SyncStatusObserver</code>)</A></nobr><br>
+<i>applyBatch</i><br>
+ <nobr><A HREF="android.content.ContentProvider.html#android.content.ContentProvider.applyBatch_added(java.util.ArrayList<android.content.ContentProviderOperation>)" class="hiddenlink" target="rightframe">type <b>
+(<code>ArrayList<ContentProviderOperation></code>)</b> in android.content.ContentProvider
+</A></nobr><br>
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.applyBatch_added(java.lang.String, java.util.ArrayList<android.content.ContentProviderOperation>)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, ArrayList<ContentProviderOperation></code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+<i>awakenScrollBars</i><br>
+ <nobr><A HREF="android.view.View.html#android.view.View.awakenScrollBars_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.View
+</A></nobr><br>
+ <nobr><A HREF="android.view.View.html#android.view.View.awakenScrollBars_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.view.View
+</A></nobr><br>
+ <nobr><A HREF="android.view.View.html#android.view.View.awakenScrollBars_added(int, boolean)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, boolean</code>)</b> in android.view.View
+</A></nobr><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.beginTransactionWithListener_added(android.database.sqlite.SQLiteTransactionListener)" class="hiddenlink" target="rightframe"><b>beginTransactionWithListener</b>
+(<code>SQLiteTransactionListener</code>)</A></nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.app.NotificationManager.html#android.app.NotificationManager.cancel_added(java.lang.String, int)" class="hiddenlink" target="rightframe"><b>cancel</b>
+(<code>String, int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.cancelAutoFocus_added()" class="hiddenlink" target="rightframe"><b>cancelAutoFocus</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.cancelSync_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>cancelSync</b>
+(<code>Account, String</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.MediaStore.Images.Thumbnails.html#android.provider.MediaStore.Images.Thumbnails.cancelThumbnailRequest_added(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe"><b>cancelThumbnailRequest</b>
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<i>canPause</i><br>
+ <nobr><A HREF="android.widget.MediaController.MediaPlayerControl.html#android.widget.MediaController.MediaPlayerControl.canPause_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.MediaController.MediaPlayerControl
+</A></nobr><br>
+ <nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.canPause_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.VideoView
+</A></nobr><br>
+<i>canSeekBackward</i><br>
+ <nobr><A HREF="android.widget.MediaController.MediaPlayerControl.html#android.widget.MediaController.MediaPlayerControl.canSeekBackward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.MediaController.MediaPlayerControl
+</A></nobr><br>
+ <nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.canSeekBackward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.VideoView
+</A></nobr><br>
+<i>canSeekForward</i><br>
+ <nobr><A HREF="android.widget.MediaController.MediaPlayerControl.html#android.widget.MediaController.MediaPlayerControl.canSeekForward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.MediaController.MediaPlayerControl
+</A></nobr><br>
+ <nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.canSeekForward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.VideoView
+</A></nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.changeTimeRepeat_added(android.view.KeyEvent, long, int, int)" class="hiddenlink" target="rightframe"><b>changeTimeRepeat</b>
+(<code>KeyEvent, long, int, int</code>)</A></nobr><br>
+<i>checkSignatures</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.checkSignatures_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.content.pm.PackageManager
+</A></nobr><br>
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.checkSignatures_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.compare_added(android.content.Context, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>compare</b>
+(<code>Context, String, String</code>)</A></nobr><br>
+<nobr><A HREF="java.util.concurrent.BlockingQueue.html#java.util.concurrent.BlockingQueue.contains_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>contains</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromResourceStream_added(android.content.res.Resources, android.util.TypedValue, java.io.InputStream, java.lang.String, android.graphics.BitmapFactory.Options)" class="hiddenlink" target="rightframe"><b>createFromResourceStream</b>
+(<code>Resources, TypedValue, InputStream, String, Options</code>)</A></nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.describeContents_added()" class="hiddenlink" target="rightframe"><b>describeContents</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.dispatch_added(android.view.KeyEvent.Callback, android.view.KeyEvent.DispatcherState, java.lang.Object)" class="hiddenlink" target="rightframe"><b>dispatch</b>
+(<code>Callback, DispatcherState, Object</code>)</A></nobr><br>
+<nobr><A HREF="android.content.pm.ServiceInfo.html#android.content.pm.ServiceInfo.dump_added(android.util.Printer, java.lang.String)" class="hiddenlink" target="rightframe"><b>dump</b>
+(<code>Printer, String</code>)</A></nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.findPointerIndex_added(int)" class="hiddenlink" target="rightframe"><b>findPointerIndex</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.text.format.DateUtils.html#android.text.format.DateUtils.formatDateRange_added(android.content.Context, java.util.Formatter, long, long, int)" class="hiddenlink" target="rightframe"><b>formatDateRange</b>
+(<code>Context, Formatter, long, long, int</code>)</A></nobr><br>
+<nobr><A HREF="android.text.format.Formatter.html#android.text.format.Formatter.formatShortFileSize_added(android.content.Context, long)" class="hiddenlink" target="rightframe"><b>formatShortFileSize</b>
+(<code>Context, long</code>)</A></nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getAntibanding_added()" class="hiddenlink" target="rightframe"><b>getAntibanding</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getColorEffect_added()" class="hiddenlink" target="rightframe"><b>getColorEffect</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getDatabaseEnabled_added()" class="hiddenlink" target="rightframe"><b>getDatabaseEnabled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getDatabasePath_added()" class="hiddenlink" target="rightframe"><b>getDatabasePath</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.animation.Animation.html#android.view.animation.Animation.getDetachWallpaper_added()" class="hiddenlink" target="rightframe"><b>getDetachWallpaper</b>
+()</A></nobr><br>
+<nobr><A HREF="android.text.style.AbsoluteSizeSpan.html#android.text.style.AbsoluteSizeSpan.getDip_added()" class="hiddenlink" target="rightframe"><b>getDip</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.getDropDownBackground_added()" class="hiddenlink" target="rightframe"><b>getDropDownBackground</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.getDropDownHorizontalOffset_added()" class="hiddenlink" target="rightframe"><b>getDropDownHorizontalOffset</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.getDropDownVerticalOffset_added()" class="hiddenlink" target="rightframe"><b>getDropDownVerticalOffset</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getFlashMode_added()" class="hiddenlink" target="rightframe"><b>getFlashMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getFocusMode_added()" class="hiddenlink" target="rightframe"><b>getFocusMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalPressure_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalPressure</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalSize_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalSize</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalX_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalX</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalY_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalY</b>
+(<code>int, int</code>)</A></nobr><br>
+<i>getInstallerPackageName</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getInstallerPackageName_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.content.pm.PackageManager
+</A></nobr><br>
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getInstallerPackageName_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getIsSyncable_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>getIsSyncable</b>
+(<code>Account, String</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getJpegQuality_added()" class="hiddenlink" target="rightframe"><b>getJpegQuality</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getJpegThumbnailQuality_added()" class="hiddenlink" target="rightframe"><b>getJpegThumbnailQuality</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getJpegThumbnailSize_added()" class="hiddenlink" target="rightframe"><b>getJpegThumbnailSize</b>
+()</A></nobr><br>
+<i>getKeyDispatcherState</i><br>
+ <nobr><A HREF="android.inputmethodservice.AbstractInputMethodService.html#android.inputmethodservice.AbstractInputMethodService.getKeyDispatcherState_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.inputmethodservice.AbstractInputMethodService
+</A></nobr><br>
+ <nobr><A HREF="android.view.View.html#android.view.View.getKeyDispatcherState_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.View
+</A></nobr><br>
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.getLac_added()" class="hiddenlink" target="rightframe"><b>getLac</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getMasterSyncAutomatically_added()" class="hiddenlink" target="rightframe"><b>getMasterSyncAutomatically</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getMemoryClass_added()" class="hiddenlink" target="rightframe"><b>getMemoryClass</b>
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.getNetworkType_added()" class="hiddenlink" target="rightframe"><b>getNetworkType</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.getParameters_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getParameters</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getPointerCount_added()" class="hiddenlink" target="rightframe"><b>getPointerCount</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getPointerId_added(int)" class="hiddenlink" target="rightframe"><b>getPointerId</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getPressure_added(int)" class="hiddenlink" target="rightframe"><b>getPressure</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getProcessMemoryInfo_added(int[])" class="hiddenlink" target="rightframe"><b>getProcessMemoryInfo</b>
+(<code>int[]</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.getPsc_added()" class="hiddenlink" target="rightframe"><b>getPsc</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRunningServiceControlPanel_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getRunningServiceControlPanel</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSceneMode_added()" class="hiddenlink" target="rightframe"><b>getSceneMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewConfiguration.html#android.view.ViewConfiguration.getScrollBarFadeDuration_added()" class="hiddenlink" target="rightframe"><b>getScrollBarFadeDuration</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewConfiguration.html#android.view.ViewConfiguration.getScrollDefaultDelay_added()" class="hiddenlink" target="rightframe"><b>getScrollDefaultDelay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getSize_added(int)" class="hiddenlink" target="rightframe"><b>getSize</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedAntibanding_added()" class="hiddenlink" target="rightframe"><b>getSupportedAntibanding</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedColorEffects_added()" class="hiddenlink" target="rightframe"><b>getSupportedColorEffects</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedFlashModes_added()" class="hiddenlink" target="rightframe"><b>getSupportedFlashModes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedFocusModes_added()" class="hiddenlink" target="rightframe"><b>getSupportedFocusModes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPictureFormats_added()" class="hiddenlink" target="rightframe"><b>getSupportedPictureFormats</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPictureSizes_added()" class="hiddenlink" target="rightframe"><b>getSupportedPictureSizes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPreviewFormats_added()" class="hiddenlink" target="rightframe"><b>getSupportedPreviewFormats</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPreviewFrameRates_added()" class="hiddenlink" target="rightframe"><b>getSupportedPreviewFrameRates</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPreviewSizes_added()" class="hiddenlink" target="rightframe"><b>getSupportedPreviewSizes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedSceneModes_added()" class="hiddenlink" target="rightframe"><b>getSupportedSceneModes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedWhiteBalance_added()" class="hiddenlink" target="rightframe"><b>getSupportedWhiteBalance</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getSyncAdapterTypes_added()" class="hiddenlink" target="rightframe"><b>getSyncAdapterTypes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getSyncAutomatically_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>getSyncAutomatically</b>
+(<code>Account, String</code>)</A></nobr><br>
+<i>getSystemAvailableFeatures</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getSystemAvailableFeatures_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.content.pm.PackageManager
+</A></nobr><br>
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getSystemAvailableFeatures_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.provider.MediaStore.Images.Thumbnails.html#android.provider.MediaStore.Images.Thumbnails.getThumbnail_added(android.content.ContentResolver, long, int, android.graphics.BitmapFactory.Options)" class="hiddenlink" target="rightframe"><b>getThumbnail</b>
+(<code>ContentResolver, long, int, Options</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.getTotalPrivateDirty_added()" class="hiddenlink" target="rightframe"><b>getTotalPrivateDirty</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.getTotalPss_added()" class="hiddenlink" target="rightframe"><b>getTotalPss</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.getTotalSharedDirty_added()" class="hiddenlink" target="rightframe"><b>getTotalSharedDirty</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.SimpleCursorTreeAdapter.html#android.widget.SimpleCursorTreeAdapter.getViewBinder_added()" class="hiddenlink" target="rightframe"><b>getViewBinder</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getWhiteBalance_added()" class="hiddenlink" target="rightframe"><b>getWhiteBalance</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getX_added(int)" class="hiddenlink" target="rightframe"><b>getX</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getY_added(int)" class="hiddenlink" target="rightframe"><b>getY</b>
+(<code>int</code>)</A></nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.hasIccCard_added()" class="hiddenlink" target="rightframe"><b>hasIccCard</b>
+()</A></nobr><br>
+<i>hasSystemFeature</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.hasSystemFeature_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.content.pm.PackageManager
+</A></nobr><br>
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.hasSystemFeature_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.test.InstrumentationTestCase.html#android.test.InstrumentationTestCase.injectInstrumentation_added(android.app.Instrumentation)" class="hiddenlink" target="rightframe"><b>injectInstrumentation</b>
+(<code>Instrumentation</code>)</A></nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.isCanceled_added()" class="hiddenlink" target="rightframe"><b>isCanceled</b>
+()</A></nobr><br>
+<i>isFloat</i><br>
+ <nobr><A HREF="android.database.AbstractWindowedCursor.html#android.database.AbstractWindowedCursor.isFloat_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.database.AbstractWindowedCursor
+</A></nobr><br>
+ <nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.isFloat_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.database.CursorWindow
+</A></nobr><br>
+<nobr><A HREF="android.content.BroadcastReceiver.html#android.content.BroadcastReceiver.isInitialStickyBroadcast_added()" class="hiddenlink" target="rightframe"><b>isInitialStickyBroadcast</b>
+()</A></nobr><br>
+<i>isLong</i><br>
+ <nobr><A HREF="android.database.AbstractWindowedCursor.html#android.database.AbstractWindowedCursor.isLong_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.database.AbstractWindowedCursor
+</A></nobr><br>
+ <nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.isLong_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.database.CursorWindow
+</A></nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.isLongPress_added()" class="hiddenlink" target="rightframe"><b>isLongPress</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.BroadcastReceiver.html#android.content.BroadcastReceiver.isOrderedBroadcast_added()" class="hiddenlink" target="rightframe"><b>isOrderedBroadcast</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.isScrollbarFadingEnabled_added()" class="hiddenlink" target="rightframe"><b>isScrollbarFadingEnabled</b>
+()</A></nobr><br>
+<i>isString</i><br>
+ <nobr><A HREF="android.database.AbstractWindowedCursor.html#android.database.AbstractWindowedCursor.isString_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.database.AbstractWindowedCursor
+</A></nobr><br>
+ <nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.isString_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.database.CursorWindow
+</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.isSyncActive_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>isSyncActive</b>
+(<code>Account, String</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.isSyncPending_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>isSyncPending</b>
+(<code>Account, String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.isTracking_added()" class="hiddenlink" target="rightframe"><b>isTracking</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.isWiredHeadsetOn_added()" class="hiddenlink" target="rightframe"><b>isWiredHeadsetOn</b>
+()</A></nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.lock_added()" class="hiddenlink" target="rightframe"><b>lock</b>
+()</A></nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.graphics.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.newDrawable_added(android.content.res.Resources)" class="hiddenlink" target="rightframe"><b>newDrawable</b>
+(<code>Resources</code>)</A></nobr><br>
+<nobr><A HREF="android.app.NotificationManager.html#android.app.NotificationManager.notify_added(java.lang.String, int, android.app.Notification)" class="hiddenlink" target="rightframe"><b>notify</b>
+(<code>String, int, Notification</code>)</A></nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.obtain_added(long, long, int, int, float, float, float, float, int, float, float, int, int)" class="hiddenlink" target="rightframe"><b>obtain</b>
+(<code>long, long, int, int, float, float, float, float, int, float, float, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.obtainNoHistory_added(android.view.MotionEvent)" class="hiddenlink" target="rightframe"><b>obtainNoHistory</b>
+(<code>MotionEvent</code>)</A></nobr><br>
+<i>onAttachedToWindow</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onAttachedToWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Activity
+</A></nobr><br>
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onAttachedToWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Dialog
+</A></nobr><br>
+ <nobr><A HREF="android.view.Window.Callback.html#android.view.Window.Callback.onAttachedToWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.Window.Callback
+</A></nobr><br>
+<i>onBackPressed</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onBackPressed_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Activity
+</A></nobr><br>
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onBackPressed_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Dialog
+</A></nobr><br>
+<i>onDetachedFromWindow</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onDetachedFromWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Activity
+</A></nobr><br>
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onDetachedFromWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Dialog
+</A></nobr><br>
+ <nobr><A HREF="android.view.Window.Callback.html#android.view.Window.Callback.onDetachedFromWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.Window.Callback
+</A></nobr><br>
+<i>onExceededDatabaseQuota</i><br>
+ <nobr><A HREF="android.webkit.CallbackProxy.html#android.webkit.CallbackProxy.onExceededDatabaseQuota_added(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, String, long, long, long, QuotaUpdater</code>)</b> in android.webkit.CallbackProxy
+</A></nobr><br>
+ <nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onExceededDatabaseQuota_added(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, String, long, long, long, QuotaUpdater</code>)</b> in android.webkit.WebChromeClient
+</A></nobr><br>
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onGeolocationPermissionsHidePrompt_added()" class="hiddenlink" target="rightframe"><b>onGeolocationPermissionsHidePrompt</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onGeolocationPermissionsShowPrompt_added(java.lang.String, android.webkit.GeolocationPermissions.Callback)" class="hiddenlink" target="rightframe"><b>onGeolocationPermissionsShowPrompt</b>
+(<code>String, Callback</code>)</A></nobr><br>
+<i>onKeyLongPress</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.app.Activity
+</A></nobr><br>
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.app.Dialog
+</A></nobr><br>
+ <nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.inputmethodservice.InputMethodService
+</A></nobr><br>
+ <nobr><A HREF="android.view.KeyEvent.Callback.html#android.view.KeyEvent.Callback.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.view.KeyEvent.Callback
+</A></nobr><br>
+ <nobr><A HREF="android.view.View.html#android.view.View.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.view.View
+</A></nobr><br>
+<nobr><A HREF="android.app.LauncherActivity.html#android.app.LauncherActivity.onQueryPackageManager_added(android.content.Intent)" class="hiddenlink" target="rightframe"><b>onQueryPackageManager</b>
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.app.LauncherActivity.html#android.app.LauncherActivity.onSetContentView_added()" class="hiddenlink" target="rightframe"><b>onSetContentView</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.onStartCommand_added(android.content.Intent, int, int)" class="hiddenlink" target="rightframe"><b>onStartCommand</b>
+(<code>Intent, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.overridePendingTransition_added(int, int)" class="hiddenlink" target="rightframe"><b>overridePendingTransition</b>
+(<code>int, int</code>)</A></nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.postUrl_added(java.lang.String, byte[])" class="hiddenlink" target="rightframe"><b>postUrl</b>
+(<code>String, byte[]</code>)</A></nobr><br>
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.HandlerThread.html#android.os.HandlerThread.quit_added()" class="hiddenlink" target="rightframe"><b>quit</b>
+()</A></nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.database.DatabaseUtils.html#android.database.DatabaseUtils.readExceptionWithOperationApplicationExceptionFromParcel_added(android.os.Parcel)" class="hiddenlink" target="rightframe"><b>readExceptionWithOperationApplicationExceptionFromParcel</b>
+(<code>Parcel</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.readFromParcel_added(android.os.Parcel)" class="hiddenlink" target="rightframe"><b>readFromParcel</b>
+(<code>Parcel</code>)</A></nobr><br>
+<nobr><A HREF="java.util.concurrent.BlockingQueue.html#java.util.concurrent.BlockingQueue.remove_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>remove</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.removeGpsData_added()" class="hiddenlink" target="rightframe"><b>removeGpsData</b>
+()</A></nobr><br>
+<nobr><A HREF="android.location.LocationManager.html#android.location.LocationManager.removeNmeaListener_added(android.location.GpsStatus.NmeaListener)" class="hiddenlink" target="rightframe"><b>removeNmeaListener</b>
+(<code>NmeaListener</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.removeStatusChangeListener_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>removeStatusChangeListener</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.requestSync_added(android.accounts.Account, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>requestSync</b>
+(<code>Account, String, Bundle</code>)</A></nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>sendStickyOrderedBroadcast</i><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</b> in android.content.Context
+</A></nobr><br>
+ <nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</b> in android.content.ContextWrapper
+</A></nobr><br>
+ <nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</b> in android.test.mock.MockContext
+</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setAntibanding_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setAntibanding</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setColorEffect_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setColorEffect</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setDatabaseEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setDatabaseEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setDatabasePath_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDatabasePath</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.animation.Animation.html#android.view.animation.Animation.setDetachWallpaper_added(boolean)" class="hiddenlink" target="rightframe"><b>setDetachWallpaper</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownBackgroundDrawable_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setDropDownBackgroundDrawable</b>
+(<code>Drawable</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownBackgroundResource_added(int)" class="hiddenlink" target="rightframe"><b>setDropDownBackgroundResource</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownHorizontalOffset_added(int)" class="hiddenlink" target="rightframe"><b>setDropDownHorizontalOffset</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownVerticalOffset_added(int)" class="hiddenlink" target="rightframe"><b>setDropDownVerticalOffset</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.opengl.GLSurfaceView.html#android.opengl.GLSurfaceView.setEGLContextFactory_added(android.opengl.GLSurfaceView.EGLContextFactory)" class="hiddenlink" target="rightframe"><b>setEGLContextFactory</b>
+(<code>EGLContextFactory</code>)</A></nobr><br>
+<nobr><A HREF="android.opengl.GLSurfaceView.html#android.opengl.GLSurfaceView.setEGLWindowSurfaceFactory_added(android.opengl.GLSurfaceView.EGLWindowSurfaceFactory)" class="hiddenlink" target="rightframe"><b>setEGLWindowSurfaceFactory</b>
+(<code>EGLWindowSurfaceFactory</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setFlashMode_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setFlashMode</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setFocusMode_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setFocusMode</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setGeolocationDatabasePath_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setGeolocationDatabasePath</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setGeolocationEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setGeolocationEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsAltitude_added(double)" class="hiddenlink" target="rightframe"><b>setGpsAltitude</b>
+(<code>double</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsLatitude_added(double)" class="hiddenlink" target="rightframe"><b>setGpsLatitude</b>
+(<code>double</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsLongitude_added(double)" class="hiddenlink" target="rightframe"><b>setGpsLongitude</b>
+(<code>double</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsTimestamp_added(long)" class="hiddenlink" target="rightframe"><b>setGpsTimestamp</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.test.AndroidTestRunner.html#android.test.AndroidTestRunner.setInstrumentation_added(android.app.Instrumentation)" class="hiddenlink" target="rightframe"><b>setInstrumentation</b>
+(<code>Instrumentation</code>)</A></nobr><br>
+<nobr><A HREF="android.app.IntentService.html#android.app.IntentService.setIntentRedelivery_added(boolean)" class="hiddenlink" target="rightframe"><b>setIntentRedelivery</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.setIsSyncable_added(android.accounts.Account, java.lang.String, int)" class="hiddenlink" target="rightframe"><b>setIsSyncable</b>
+(<code>Account, String, int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setJpegQuality_added(int)" class="hiddenlink" target="rightframe"><b>setJpegQuality</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setJpegThumbnailQuality_added(int)" class="hiddenlink" target="rightframe"><b>setJpegThumbnailQuality</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setJpegThumbnailSize_added(int, int)" class="hiddenlink" target="rightframe"><b>setJpegThumbnailSize</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.setMasterSyncAutomatically_added(boolean)" class="hiddenlink" target="rightframe"><b>setMasterSyncAutomatically</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.setParameters_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setParameters</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setRotation_added(int)" class="hiddenlink" target="rightframe"><b>setRotation</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setSceneMode_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setSceneMode</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setScrollbarFadingEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setScrollbarFadingEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.setSyncAutomatically_added(android.accounts.Account, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setSyncAutomatically</b>
+(<code>Account, String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.SimpleCursorTreeAdapter.html#android.widget.SimpleCursorTreeAdapter.setViewBinder_added(android.widget.SimpleCursorTreeAdapter.ViewBinder)" class="hiddenlink" target="rightframe"><b>setViewBinder</b>
+(<code>ViewBinder</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.SimpleCursorTreeAdapter.html#android.widget.SimpleCursorTreeAdapter.setViewText_added(android.widget.TextView, java.lang.String)" class="hiddenlink" target="rightframe"><b>setViewText</b>
+(<code>TextView, String</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setWhiteBalance_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setWhiteBalance</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.setWiredHeadsetOn_added(boolean)" class="hiddenlink" target="rightframe"><b>setWiredHeadsetOn</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.SurfaceView.html#android.view.SurfaceView.setZOrderMediaOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setZOrderMediaOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.SurfaceView.html#android.view.SurfaceView.setZOrderOnTop_added(boolean)" class="hiddenlink" target="rightframe"><b>setZOrderOnTop</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.startForeground_added(int, android.app.Notification)" class="hiddenlink" target="rightframe"><b>startForeground</b>
+(<code>int, Notification</code>)</A></nobr><br>
+<i>startIntentSender</i><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>IntentSender, Intent, int, int, int</code>)</b> in android.content.Context
+</A></nobr><br>
+ <nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>IntentSender, Intent, int, int, int</code>)</b> in android.content.ContextWrapper
+</A></nobr><br>
+ <nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>IntentSender, Intent, int, int, int</code>)</b> in android.test.mock.MockContext
+</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startIntentSenderForResult_added(android.content.IntentSender, int, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe"><b>startIntentSenderForResult</b>
+(<code>IntentSender, int, Intent, int, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startIntentSenderFromChild_added(android.app.Activity, android.content.IntentSender, int, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe"><b>startIntentSenderFromChild</b>
+(<code>Activity, IntentSender, int, Intent, int, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.media.ToneGenerator.html#android.media.ToneGenerator.startTone_added(int, int)" class="hiddenlink" target="rightframe"><b>startTone</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.startTracking_added()" class="hiddenlink" target="rightframe"><b>startTracking</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.stopForeground_added(boolean)" class="hiddenlink" target="rightframe"><b>stopForeground</b>
+(<code>boolean</code>)</A></nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.takePicture_added(android.hardware.Camera.ShutterCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback)" class="hiddenlink" target="rightframe"><b>takePicture</b>
+(<code>ShutterCallback, PictureCallback, PictureCallback, PictureCallback</code>)</A></nobr><br>
+<i>triggerSearch</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.triggerSearch_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, Bundle</code>)</b> in android.app.Activity
+</A></nobr><br>
+ <nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.triggerSearch_added(java.lang.String, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, ComponentName, Bundle</code>)</b> in android.app.SearchManager
+</A></nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.unlock_added()" class="hiddenlink" target="rightframe"><b>unlock</b>
+()</A></nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.writeToParcel_added(android.os.Parcel, int)" class="hiddenlink" target="rightframe"><b>writeToParcel</b>
+(<code>Parcel, int</code>)</A></nobr><br>
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.yieldIfContendedSafely_added(long)" class="hiddenlink" target="rightframe"><b>yieldIfContendedSafely</b>
+(<code>long</code>)</A></nobr><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/methods_index_all.html b/docs/html/sdk/api_diff/5/changes/methods_index_all.html
new file mode 100644
index 0000000..d59f317
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/methods_index_all.html
@@ -0,0 +1,1197 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Method Differences Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Methods" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<b>Methods</b>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<A HREF="methods_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<A HREF="methods_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>acquireContentProviderClient</i><br>
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.acquireContentProviderClient_added(android.net.Uri)" class="hiddenlink" target="rightframe">type <b>
+(<code>Uri</code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.acquireContentProviderClient_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+<nobr><A HREF="android.location.LocationManager.html#android.location.LocationManager.addNmeaListener_added(android.location.GpsStatus.NmeaListener)" class="hiddenlink" target="rightframe"><b>addNmeaListener</b>
+(<code>NmeaListener</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.addPlugin_changed(android.webkit.Plugin)" class="hiddenlink" target="rightframe">addPlugin
+(<code>Plugin</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.addPostalLocation_changed(android.content.Context, long, double, double)" class="hiddenlink" target="rightframe">addPostalLocation
+(<code>Context, long, double, double</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.addStatusChangeListener_added(int, android.content.SyncStatusObserver)" class="hiddenlink" target="rightframe"><b>addStatusChangeListener</b>
+(<code>int, SyncStatusObserver</code>)</A></nobr><br>
+<i>addToGroup</i><br>
+ <nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.addToGroup_changed(android.content.ContentResolver, long, java.lang.String)" class="hiddenlink" target="rightframe">type
+(<code>ContentResolver, long, String</code>) in android.provider.Contacts.People
+</A></nobr><br>
+ <nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.addToGroup_changed(android.content.ContentResolver, long, long)" class="hiddenlink" target="rightframe">type
+(<code>ContentResolver, long, long</code>) in android.provider.Contacts.People
+</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.addToMyContactsGroup_changed(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe">addToMyContactsGroup
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<i>applyBatch</i><br>
+ <nobr><A HREF="android.content.ContentProvider.html#android.content.ContentProvider.applyBatch_added(java.util.ArrayList<android.content.ContentProviderOperation>)" class="hiddenlink" target="rightframe">type <b>
+(<code>ArrayList<ContentProviderOperation></code>)</b> in android.content.ContentProvider
+</A></nobr><br>
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.applyBatch_added(java.lang.String, java.util.ArrayList<android.content.ContentProviderOperation>)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, ArrayList<ContentProviderOperation></code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+<i>awakenScrollBars</i><br>
+ <nobr><A HREF="android.view.View.html#android.view.View.awakenScrollBars_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.View
+</A></nobr><br>
+ <nobr><A HREF="android.view.View.html#android.view.View.awakenScrollBars_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.view.View
+</A></nobr><br>
+ <nobr><A HREF="android.view.View.html#android.view.View.awakenScrollBars_added(int, boolean)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, boolean</code>)</b> in android.view.View
+</A></nobr><br>
+<A NAME="B"></A>
+<br><font size="+2">B</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.beginTransactionWithListener_added(android.database.sqlite.SQLiteTransactionListener)" class="hiddenlink" target="rightframe"><b>beginTransactionWithListener</b>
+(<code>SQLiteTransactionListener</code>)</A></nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.app.NotificationManager.html#android.app.NotificationManager.cancel_added(java.lang.String, int)" class="hiddenlink" target="rightframe"><b>cancel</b>
+(<code>String, int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.cancelAutoFocus_added()" class="hiddenlink" target="rightframe"><b>cancelAutoFocus</b>
+()</A></nobr><br>
+<i>cancelSync</i><br>
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.cancelSync_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>Account, String</code>)</b> in android.content.ContentResolver
+</A></nobr><br>
+ <nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.cancelSync_changed(android.net.Uri)" class="hiddenlink" target="rightframe">type
+(<code>Uri</code>) in android.content.ContentResolver
+</A></nobr><br>
+<nobr><A HREF="android.provider.MediaStore.Images.Thumbnails.html#android.provider.MediaStore.Images.Thumbnails.cancelThumbnailRequest_added(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe"><b>cancelThumbnailRequest</b>
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<i>canPause</i><br>
+ <nobr><A HREF="android.widget.MediaController.MediaPlayerControl.html#android.widget.MediaController.MediaPlayerControl.canPause_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.MediaController.MediaPlayerControl
+</A></nobr><br>
+ <nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.canPause_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.VideoView
+</A></nobr><br>
+<i>canSeekBackward</i><br>
+ <nobr><A HREF="android.widget.MediaController.MediaPlayerControl.html#android.widget.MediaController.MediaPlayerControl.canSeekBackward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.MediaController.MediaPlayerControl
+</A></nobr><br>
+ <nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.canSeekBackward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.VideoView
+</A></nobr><br>
+<i>canSeekForward</i><br>
+ <nobr><A HREF="android.widget.MediaController.MediaPlayerControl.html#android.widget.MediaController.MediaPlayerControl.canSeekForward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.MediaController.MediaPlayerControl
+</A></nobr><br>
+ <nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.canSeekForward_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.widget.VideoView
+</A></nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.changeTimeRepeat_added(android.view.KeyEvent, long, int, int)" class="hiddenlink" target="rightframe"><b>changeTimeRepeat</b>
+(<code>KeyEvent, long, int, int</code>)</A></nobr><br>
+<i>checkSignatures</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.checkSignatures_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.content.pm.PackageManager
+</A></nobr><br>
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.checkSignatures_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.clear_changed()" class="hiddenlink" target="rightframe">clear
+()</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.clearWallpaper_changed()" class="hiddenlink" target="rightframe">clearWallpaper
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.compare_added(android.content.Context, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>compare</b>
+(<code>Context, String, String</code>)</A></nobr><br>
+<nobr><A HREF="java.util.concurrent.BlockingQueue.html#java.util.concurrent.BlockingQueue.contains_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>contains</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromResourceStream_added(android.content.res.Resources, android.util.TypedValue, java.io.InputStream, java.lang.String, android.graphics.BitmapFactory.Options)" class="hiddenlink" target="rightframe"><b>createFromResourceStream</b>
+(<code>Resources, TypedValue, InputStream, String, Options</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.createPersonInMyContactsGroup_changed(android.content.ContentResolver, android.content.ContentValues)" class="hiddenlink" target="rightframe">createPersonInMyContactsGroup
+(<code>ContentResolver, ContentValues</code>)</A></nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.decodeImProtocol_changed(java.lang.String)" class="hiddenlink" target="rightframe">decodeImProtocol
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.describeContents_added()" class="hiddenlink" target="rightframe"><b>describeContents</b>
+()</A></nobr><br>
+<i>dispatch</i><br>
+ <nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.dispatch_added(android.view.KeyEvent.Callback, android.view.KeyEvent.DispatcherState, java.lang.Object)" class="hiddenlink" target="rightframe">type <b>
+(<code>Callback, DispatcherState, Object</code>)</b> in android.view.KeyEvent
+</A></nobr><br>
+ <nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.dispatch_changed(android.view.KeyEvent.Callback)" class="hiddenlink" target="rightframe">type
+(<code>Callback</code>) in android.view.KeyEvent
+</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.dispatchClickEvent_changed(android.content.Context)" class="hiddenlink" target="rightframe">dispatchClickEvent
+(<code>Context</code>)</A></nobr><br>
+<nobr><A HREF="android.content.pm.ServiceInfo.html#android.content.pm.ServiceInfo.dump_added(android.util.Printer, java.lang.String)" class="hiddenlink" target="rightframe"><b>dump</b>
+(<code>Printer, String</code>)</A></nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.encodeCustomImProtocol_changed(java.lang.String)" class="hiddenlink" target="rightframe">encodeCustomImProtocol
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.encodePredefinedImProtocol_changed(int)" class="hiddenlink" target="rightframe">encodePredefinedImProtocol
+(<code>int</code>)</A></nobr><br>
+<A NAME="F"></A>
+<br><font size="+2">F</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.findPointerIndex_added(int)" class="hiddenlink" target="rightframe"><b>findPointerIndex</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.text.format.DateUtils.html#android.text.format.DateUtils.formatDateRange_added(android.content.Context, java.util.Formatter, long, long, int)" class="hiddenlink" target="rightframe"><b>formatDateRange</b>
+(<code>Context, Formatter, long, long, int</code>)</A></nobr><br>
+<nobr><A HREF="android.text.format.Formatter.html#android.text.format.Formatter.formatShortFileSize_added(android.content.Context, long)" class="hiddenlink" target="rightframe"><b>formatShortFileSize</b>
+(<code>Context, long</code>)</A></nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getAntibanding_added()" class="hiddenlink" target="rightframe"><b>getAntibanding</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getColorEffect_added()" class="hiddenlink" target="rightframe"><b>getColorEffect</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getContentLength_changed()" class="hiddenlink" target="rightframe">getContentLength
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getDatabaseEnabled_added()" class="hiddenlink" target="rightframe"><b>getDatabaseEnabled</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getDatabasePath_added()" class="hiddenlink" target="rightframe"><b>getDatabasePath</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getDescription_changed()" class="hiddenlink" target="rightframe">getDescription
+()</A></nobr><br>
+<nobr><A HREF="android.view.animation.Animation.html#android.view.animation.Animation.getDetachWallpaper_added()" class="hiddenlink" target="rightframe"><b>getDetachWallpaper</b>
+()</A></nobr><br>
+<nobr><A HREF="android.text.style.AbsoluteSizeSpan.html#android.text.style.AbsoluteSizeSpan.getDip_added()" class="hiddenlink" target="rightframe"><b>getDip</b>
+()</A></nobr><br>
+<i>getDisplayLabel</i><br>
+ <nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.getDisplayLabel_changed(android.content.Context, int, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe">type
+(<code>Context, int, int, CharSequence</code>) in android.provider.Contacts.ContactMethods
+</A></nobr><br>
+ <nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe">type
+(<code>Context, int, CharSequence</code>) in android.provider.Contacts.Organizations
+</A></nobr><br>
+ <nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe">type
+(<code>Context, int, CharSequence</code>) in android.provider.Contacts.Phones
+</A></nobr><br>
+ <nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence, java.lang.CharSequence[])" class="hiddenlink" target="rightframe">type
+(<code>Context, int, CharSequence, CharSequence[]</code>) in android.provider.Contacts.Phones
+</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.getDropDownBackground_added()" class="hiddenlink" target="rightframe"><b>getDropDownBackground</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.getDropDownHorizontalOffset_added()" class="hiddenlink" target="rightframe"><b>getDropDownHorizontalOffset</b>
+()</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.getDropDownVerticalOffset_added()" class="hiddenlink" target="rightframe"><b>getDropDownVerticalOffset</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getFileName_changed()" class="hiddenlink" target="rightframe">getFileName
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getFlashMode_added()" class="hiddenlink" target="rightframe"><b>getFlashMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getFocusMode_added()" class="hiddenlink" target="rightframe"><b>getFocusMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getHeaders_changed()" class="hiddenlink" target="rightframe">getHeaders
+()</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalPressure_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalPressure</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalSize_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalSize</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalX_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalX</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getHistoricalY_added(int, int)" class="hiddenlink" target="rightframe"><b>getHistoricalY</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getInputStream_changed()" class="hiddenlink" target="rightframe">getInputStream
+()</A></nobr><br>
+<i>getInstallerPackageName</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getInstallerPackageName_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.content.pm.PackageManager
+</A></nobr><br>
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getInstallerPackageName_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getIsSyncable_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>getIsSyncable</b>
+(<code>Account, String</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getJpegQuality_added()" class="hiddenlink" target="rightframe"><b>getJpegQuality</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getJpegThumbnailQuality_added()" class="hiddenlink" target="rightframe"><b>getJpegThumbnailQuality</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getJpegThumbnailSize_added()" class="hiddenlink" target="rightframe"><b>getJpegThumbnailSize</b>
+()</A></nobr><br>
+<i>getKeyDispatcherState</i><br>
+ <nobr><A HREF="android.inputmethodservice.AbstractInputMethodService.html#android.inputmethodservice.AbstractInputMethodService.getKeyDispatcherState_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.inputmethodservice.AbstractInputMethodService
+</A></nobr><br>
+ <nobr><A HREF="android.view.View.html#android.view.View.getKeyDispatcherState_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.View
+</A></nobr><br>
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.getLac_added()" class="hiddenlink" target="rightframe"><b>getLac</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.getList_changed()" class="hiddenlink" target="rightframe">getList
+()</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getMasterSyncAutomatically_added()" class="hiddenlink" target="rightframe"><b>getMasterSyncAutomatically</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getMemoryClass_added()" class="hiddenlink" target="rightframe"><b>getMemoryClass</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getName_changed()" class="hiddenlink" target="rightframe">getName
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.getNetworkType_added()" class="hiddenlink" target="rightframe"><b>getNetworkType</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.getParameters_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getParameters</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getPath_changed()" class="hiddenlink" target="rightframe">getPath
+()</A></nobr><br>
+<i>getPluginData</i><br>
+ <nobr><A HREF="android.webkit.UrlInterceptHandler.html#android.webkit.UrlInterceptHandler.getPluginData_changed(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type
+(<code>String, Map<String, String></code>) in android.webkit.UrlInterceptHandler
+</A></nobr><br>
+ <nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.getPluginData_changed(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type
+(<code>String, Map<String, String></code>) in android.webkit.UrlInterceptRegistry
+</A></nobr><br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.getPluginList_changed()" class="hiddenlink" target="rightframe">getPluginList
+()</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getPointerCount_added()" class="hiddenlink" target="rightframe"><b>getPointerCount</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getPointerId_added(int)" class="hiddenlink" target="rightframe"><b>getPointerId</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getPressure_added(int)" class="hiddenlink" target="rightframe"><b>getPressure</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getProcessMemoryInfo_added(int[])" class="hiddenlink" target="rightframe"><b>getProcessMemoryInfo</b>
+(<code>int[]</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.getPsc_added()" class="hiddenlink" target="rightframe"><b>getPsc</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRunningServiceControlPanel_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getRunningServiceControlPanel</b>
+(<code>ComponentName</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSceneMode_added()" class="hiddenlink" target="rightframe"><b>getSceneMode</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewConfiguration.html#android.view.ViewConfiguration.getScrollBarFadeDuration_added()" class="hiddenlink" target="rightframe"><b>getScrollBarFadeDuration</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.ViewConfiguration.html#android.view.ViewConfiguration.getScrollDefaultDelay_added()" class="hiddenlink" target="rightframe"><b>getScrollDefaultDelay</b>
+()</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.getSetting_changed(android.content.ContentResolver, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">getSetting
+(<code>ContentResolver, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getSize_added(int)" class="hiddenlink" target="rightframe"><b>getSize</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getStatusCode_changed()" class="hiddenlink" target="rightframe">getStatusCode
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedAntibanding_added()" class="hiddenlink" target="rightframe"><b>getSupportedAntibanding</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedColorEffects_added()" class="hiddenlink" target="rightframe"><b>getSupportedColorEffects</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedFlashModes_added()" class="hiddenlink" target="rightframe"><b>getSupportedFlashModes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedFocusModes_added()" class="hiddenlink" target="rightframe"><b>getSupportedFocusModes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPictureFormats_added()" class="hiddenlink" target="rightframe"><b>getSupportedPictureFormats</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPictureSizes_added()" class="hiddenlink" target="rightframe"><b>getSupportedPictureSizes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPreviewFormats_added()" class="hiddenlink" target="rightframe"><b>getSupportedPreviewFormats</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPreviewFrameRates_added()" class="hiddenlink" target="rightframe"><b>getSupportedPreviewFrameRates</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedPreviewSizes_added()" class="hiddenlink" target="rightframe"><b>getSupportedPreviewSizes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedSceneModes_added()" class="hiddenlink" target="rightframe"><b>getSupportedSceneModes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getSupportedWhiteBalance_added()" class="hiddenlink" target="rightframe"><b>getSupportedWhiteBalance</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getSyncAdapterTypes_added()" class="hiddenlink" target="rightframe"><b>getSyncAdapterTypes</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.getSyncAutomatically_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>getSyncAutomatically</b>
+(<code>Account, String</code>)</A></nobr><br>
+<i>getSystemAvailableFeatures</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getSystemAvailableFeatures_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.content.pm.PackageManager
+</A></nobr><br>
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getSystemAvailableFeatures_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<nobr><A HREF="android.provider.MediaStore.Images.Thumbnails.html#android.provider.MediaStore.Images.Thumbnails.getThumbnail_added(android.content.ContentResolver, long, int, android.graphics.BitmapFactory.Options)" class="hiddenlink" target="rightframe"><b>getThumbnail</b>
+(<code>ContentResolver, long, int, Options</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.getTotalPrivateDirty_added()" class="hiddenlink" target="rightframe"><b>getTotalPrivateDirty</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.getTotalPss_added()" class="hiddenlink" target="rightframe"><b>getTotalPss</b>
+()</A></nobr><br>
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.getTotalSharedDirty_added()" class="hiddenlink" target="rightframe"><b>getTotalSharedDirty</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getUseDoubleTree_changed()" class="hiddenlink" target="rightframe">getUseDoubleTree
+()</A></nobr><br>
+<nobr><A HREF="android.widget.SimpleCursorTreeAdapter.html#android.widget.SimpleCursorTreeAdapter.getViewBinder_added()" class="hiddenlink" target="rightframe"><b>getViewBinder</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.getWallpaper_changed()" class="hiddenlink" target="rightframe">getWallpaper
+()</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.getWallpaperDesiredMinimumHeight_changed()" class="hiddenlink" target="rightframe">getWallpaperDesiredMinimumHeight
+()</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.getWallpaperDesiredMinimumWidth_changed()" class="hiddenlink" target="rightframe">getWallpaperDesiredMinimumWidth
+()</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.getWhiteBalance_added()" class="hiddenlink" target="rightframe"><b>getWhiteBalance</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getX_added(int)" class="hiddenlink" target="rightframe"><b>getX</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.getY_added(int)" class="hiddenlink" target="rightframe"><b>getY</b>
+(<code>int</code>)</A></nobr><br>
+<A NAME="H"></A>
+<br><font size="+2">H</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.hasIccCard_added()" class="hiddenlink" target="rightframe"><b>hasIccCard</b>
+()</A></nobr><br>
+<i>hasSystemFeature</i><br>
+ <nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.hasSystemFeature_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.content.pm.PackageManager
+</A></nobr><br>
+ <nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.hasSystemFeature_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
+(<code>String</code>)</b> in android.test.mock.MockPackageManager
+</A></nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.test.InstrumentationTestCase.html#android.test.InstrumentationTestCase.injectInsrumentation_changed(android.app.Instrumentation)" class="hiddenlink" target="rightframe">injectInsrumentation
+(<code>Instrumentation</code>)</A></nobr><br>
+<nobr><A HREF="android.test.InstrumentationTestCase.html#android.test.InstrumentationTestCase.injectInstrumentation_added(android.app.Instrumentation)" class="hiddenlink" target="rightframe"><b>injectInstrumentation</b>
+(<code>Instrumentation</code>)</A></nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.isCanceled_added()" class="hiddenlink" target="rightframe"><b>isCanceled</b>
+()</A></nobr><br>
+<i>isFloat</i><br>
+ <nobr><A HREF="android.database.AbstractWindowedCursor.html#android.database.AbstractWindowedCursor.isFloat_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.database.AbstractWindowedCursor
+</A></nobr><br>
+ <nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.isFloat_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.database.CursorWindow
+</A></nobr><br>
+<nobr><A HREF="android.content.BroadcastReceiver.html#android.content.BroadcastReceiver.isInitialStickyBroadcast_added()" class="hiddenlink" target="rightframe"><b>isInitialStickyBroadcast</b>
+()</A></nobr><br>
+<i>isLong</i><br>
+ <nobr><A HREF="android.database.AbstractWindowedCursor.html#android.database.AbstractWindowedCursor.isLong_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.database.AbstractWindowedCursor
+</A></nobr><br>
+ <nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.isLong_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.database.CursorWindow
+</A></nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.isLongPress_added()" class="hiddenlink" target="rightframe"><b>isLongPress</b>
+()</A></nobr><br>
+<nobr><A HREF="android.content.BroadcastReceiver.html#android.content.BroadcastReceiver.isOrderedBroadcast_added()" class="hiddenlink" target="rightframe"><b>isOrderedBroadcast</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.isScrollbarFadingEnabled_added()" class="hiddenlink" target="rightframe"><b>isScrollbarFadingEnabled</b>
+()</A></nobr><br>
+<i>isString</i><br>
+ <nobr><A HREF="android.database.AbstractWindowedCursor.html#android.database.AbstractWindowedCursor.isString_added(int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int</code>)</b> in android.database.AbstractWindowedCursor
+</A></nobr><br>
+ <nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.isString_added(int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, int</code>)</b> in android.database.CursorWindow
+</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.isSyncActive_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>isSyncActive</b>
+(<code>Account, String</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.isSyncPending_added(android.accounts.Account, java.lang.String)" class="hiddenlink" target="rightframe"><b>isSyncPending</b>
+(<code>Account, String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.isTracking_added()" class="hiddenlink" target="rightframe"><b>isTracking</b>
+()</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.isWiredHeadsetOn_added()" class="hiddenlink" target="rightframe"><b>isWiredHeadsetOn</b>
+()</A></nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.loadContactPhoto_changed(android.content.Context, android.net.Uri, int, android.graphics.BitmapFactory.Options)" class="hiddenlink" target="rightframe">loadContactPhoto
+(<code>Context, Uri, int, Options</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.lock_added()" class="hiddenlink" target="rightframe"><b>lock</b>
+()</A></nobr><br>
+<nobr><A HREF="android.view.Surface.html#android.view.Surface.lockCanvas_changed(android.graphics.Rect)" class="hiddenlink" target="rightframe">lockCanvas
+(<code>Rect</code>)</A></nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.markAsContacted_changed(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe">markAsContacted
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<A NAME="N"></A>
+<br><font size="+2">N</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.graphics.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.newDrawable_added(android.content.res.Resources)" class="hiddenlink" target="rightframe"><b>newDrawable</b>
+(<code>Resources</code>)</A></nobr><br>
+<nobr><A HREF="android.app.NotificationManager.html#android.app.NotificationManager.notify_added(java.lang.String, int, android.app.Notification)" class="hiddenlink" target="rightframe"><b>notify</b>
+(<code>String, int, Notification</code>)</A></nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.obtain_added(long, long, int, int, float, float, float, float, int, float, float, int, int)" class="hiddenlink" target="rightframe"><b>obtain</b>
+(<code>long, long, int, int, float, float, float, float, int, float, float, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.obtainNoHistory_added(android.view.MotionEvent)" class="hiddenlink" target="rightframe"><b>obtainNoHistory</b>
+(<code>MotionEvent</code>)</A></nobr><br>
+<i>onAttachedToWindow</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onAttachedToWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Activity
+</A></nobr><br>
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onAttachedToWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Dialog
+</A></nobr><br>
+ <nobr><A HREF="android.view.Window.Callback.html#android.view.Window.Callback.onAttachedToWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.Window.Callback
+</A></nobr><br>
+<i>onBackPressed</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onBackPressed_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Activity
+</A></nobr><br>
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onBackPressed_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Dialog
+</A></nobr><br>
+<i>onDetachedFromWindow</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onDetachedFromWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Activity
+</A></nobr><br>
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onDetachedFromWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.app.Dialog
+</A></nobr><br>
+ <nobr><A HREF="android.view.Window.Callback.html#android.view.Window.Callback.onDetachedFromWindow_added()" class="hiddenlink" target="rightframe">type <b>
+()</b> in android.view.Window.Callback
+</A></nobr><br>
+<i>onExceededDatabaseQuota</i><br>
+ <nobr><A HREF="android.webkit.CallbackProxy.html#android.webkit.CallbackProxy.onExceededDatabaseQuota_added(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, String, long, long, long, QuotaUpdater</code>)</b> in android.webkit.CallbackProxy
+</A></nobr><br>
+ <nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onExceededDatabaseQuota_added(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, String, long, long, long, QuotaUpdater</code>)</b> in android.webkit.WebChromeClient
+</A></nobr><br>
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onGeolocationPermissionsHidePrompt_added()" class="hiddenlink" target="rightframe"><b>onGeolocationPermissionsHidePrompt</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onGeolocationPermissionsShowPrompt_added(java.lang.String, android.webkit.GeolocationPermissions.Callback)" class="hiddenlink" target="rightframe"><b>onGeolocationPermissionsShowPrompt</b>
+(<code>String, Callback</code>)</A></nobr><br>
+<i>onKeyLongPress</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.app.Activity
+</A></nobr><br>
+ <nobr><A HREF="android.app.Dialog.html#android.app.Dialog.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.app.Dialog
+</A></nobr><br>
+ <nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.inputmethodservice.InputMethodService
+</A></nobr><br>
+ <nobr><A HREF="android.view.KeyEvent.Callback.html#android.view.KeyEvent.Callback.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.view.KeyEvent.Callback
+</A></nobr><br>
+ <nobr><A HREF="android.view.View.html#android.view.View.onKeyLongPress_added(int, android.view.KeyEvent)" class="hiddenlink" target="rightframe">type <b>
+(<code>int, KeyEvent</code>)</b> in android.view.View
+</A></nobr><br>
+<nobr><A HREF="android.app.LauncherActivity.html#android.app.LauncherActivity.onQueryPackageManager_added(android.content.Intent)" class="hiddenlink" target="rightframe"><b>onQueryPackageManager</b>
+(<code>Intent</code>)</A></nobr><br>
+<nobr><A HREF="android.app.LauncherActivity.html#android.app.LauncherActivity.onSetContentView_added()" class="hiddenlink" target="rightframe"><b>onSetContentView</b>
+()</A></nobr><br>
+<nobr><A HREF="android.telephony.PhoneStateListener.html#android.telephony.PhoneStateListener.onSignalStrengthChanged_changed(int)" class="hiddenlink" target="rightframe">onSignalStrengthChanged
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.onStart_changed(android.content.Intent, int)" class="hiddenlink" target="rightframe">onStart
+(<code>Intent, int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.onStartCommand_added(android.content.Intent, int, int)" class="hiddenlink" target="rightframe"><b>onStartCommand</b>
+(<code>Intent, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.openContactPhotoInputStream_changed(android.content.ContentResolver, android.net.Uri)" class="hiddenlink" target="rightframe">openContactPhotoInputStream
+(<code>ContentResolver, Uri</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.overridePendingTransition_added(int, int)" class="hiddenlink" target="rightframe"><b>overridePendingTransition</b>
+(<code>int, int</code>)</A></nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.content.Context.html#android.content.Context.peekWallpaper_changed()" class="hiddenlink" target="rightframe">peekWallpaper
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.pluginClicked_changed(android.content.Context, int)" class="hiddenlink" target="rightframe">pluginClicked
+(<code>Context, int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.postUrl_added(java.lang.String, byte[])" class="hiddenlink" target="rightframe"><b>postUrl</b>
+(<code>String, byte[]</code>)</A></nobr><br>
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.queryGroups_changed(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe">queryGroups
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<nobr><A HREF="android.os.HandlerThread.html#android.os.HandlerThread.quit_added()" class="hiddenlink" target="rightframe"><b>quit</b>
+()</A></nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.database.DatabaseUtils.html#android.database.DatabaseUtils.readExceptionWithOperationApplicationExceptionFromParcel_added(android.os.Parcel)" class="hiddenlink" target="rightframe"><b>readExceptionWithOperationApplicationExceptionFromParcel</b>
+(<code>Parcel</code>)</A></nobr><br>
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.readFromParcel_added(android.os.Parcel)" class="hiddenlink" target="rightframe"><b>readFromParcel</b>
+(<code>Parcel</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.refreshPlugins_changed(boolean)" class="hiddenlink" target="rightframe">refreshPlugins
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.registerHandler_changed(android.webkit.UrlInterceptHandler)" class="hiddenlink" target="rightframe">registerHandler
+(<code>UrlInterceptHandler</code>)</A></nobr><br>
+<nobr><A HREF="java.util.concurrent.BlockingQueue.html#java.util.concurrent.BlockingQueue.remove_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>remove</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.removeGpsData_added()" class="hiddenlink" target="rightframe"><b>removeGpsData</b>
+()</A></nobr><br>
+<nobr><A HREF="android.location.LocationManager.html#android.location.LocationManager.removeNmeaListener_added(android.location.GpsStatus.NmeaListener)" class="hiddenlink" target="rightframe"><b>removeNmeaListener</b>
+(<code>NmeaListener</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.removePlugin_changed(android.webkit.Plugin)" class="hiddenlink" target="rightframe">removePlugin
+(<code>Plugin</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.removeStatusChangeListener_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>removeStatusChangeListener</b>
+(<code>Object</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.requestSync_added(android.accounts.Account, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>requestSync</b>
+(<code>Account, String, Bundle</code>)</A></nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<i>sendStickyOrderedBroadcast</i><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</b> in android.content.Context
+</A></nobr><br>
+ <nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</b> in android.content.ContextWrapper
+</A></nobr><br>
+ <nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</b> in android.test.mock.MockContext
+</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setAntibanding_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setAntibanding</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.setBluetoothA2dpOn_changed(boolean)" class="hiddenlink" target="rightframe">setBluetoothA2dpOn
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.setCid_changed(int)" class="hiddenlink" target="rightframe">setCid
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setClickHandler_changed(android.webkit.Plugin.PreferencesClickHandler)" class="hiddenlink" target="rightframe">setClickHandler
+(<code>PreferencesClickHandler</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setColorEffect_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setColorEffect</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setDatabaseEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setDatabaseEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setDatabasePath_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setDatabasePath</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setDescription_changed(java.lang.String)" class="hiddenlink" target="rightframe">setDescription
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.animation.Animation.html#android.view.animation.Animation.setDetachWallpaper_added(boolean)" class="hiddenlink" target="rightframe"><b>setDetachWallpaper</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownBackgroundDrawable_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setDropDownBackgroundDrawable</b>
+(<code>Drawable</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownBackgroundResource_added(int)" class="hiddenlink" target="rightframe"><b>setDropDownBackgroundResource</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownHorizontalOffset_added(int)" class="hiddenlink" target="rightframe"><b>setDropDownHorizontalOffset</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.AutoCompleteTextView.html#android.widget.AutoCompleteTextView.setDropDownVerticalOffset_added(int)" class="hiddenlink" target="rightframe"><b>setDropDownVerticalOffset</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.opengl.GLSurfaceView.html#android.opengl.GLSurfaceView.setEGLContextFactory_added(android.opengl.GLSurfaceView.EGLContextFactory)" class="hiddenlink" target="rightframe"><b>setEGLContextFactory</b>
+(<code>EGLContextFactory</code>)</A></nobr><br>
+<nobr><A HREF="android.opengl.GLSurfaceView.html#android.opengl.GLSurfaceView.setEGLWindowSurfaceFactory_added(android.opengl.GLSurfaceView.EGLWindowSurfaceFactory)" class="hiddenlink" target="rightframe"><b>setEGLWindowSurfaceFactory</b>
+(<code>EGLWindowSurfaceFactory</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setFileName_changed(java.lang.String)" class="hiddenlink" target="rightframe">setFileName
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setFlashMode_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setFlashMode</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setFocusMode_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setFocusMode</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.setForeground_changed(boolean)" class="hiddenlink" target="rightframe">setForeground
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setGeolocationDatabasePath_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setGeolocationDatabasePath</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setGeolocationEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setGeolocationEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsAltitude_added(double)" class="hiddenlink" target="rightframe"><b>setGpsAltitude</b>
+(<code>double</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsLatitude_added(double)" class="hiddenlink" target="rightframe"><b>setGpsLatitude</b>
+(<code>double</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsLongitude_added(double)" class="hiddenlink" target="rightframe"><b>setGpsLongitude</b>
+(<code>double</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setGpsTimestamp_added(long)" class="hiddenlink" target="rightframe"><b>setGpsTimestamp</b>
+(<code>long</code>)</A></nobr><br>
+<nobr><A HREF="android.test.AndroidTestRunner.html#android.test.AndroidTestRunner.setInstrumentaiton_changed(android.app.Instrumentation)" class="hiddenlink" target="rightframe">setInstrumentaiton
+(<code>Instrumentation</code>)</A></nobr><br>
+<nobr><A HREF="android.test.AndroidTestRunner.html#android.test.AndroidTestRunner.setInstrumentation_added(android.app.Instrumentation)" class="hiddenlink" target="rightframe"><b>setInstrumentation</b>
+(<code>Instrumentation</code>)</A></nobr><br>
+<nobr><A HREF="android.app.IntentService.html#android.app.IntentService.setIntentRedelivery_added(boolean)" class="hiddenlink" target="rightframe"><b>setIntentRedelivery</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.setIsSyncable_added(android.accounts.Account, java.lang.String, int)" class="hiddenlink" target="rightframe"><b>setIsSyncable</b>
+(<code>Account, String, int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setJpegQuality_added(int)" class="hiddenlink" target="rightframe"><b>setJpegQuality</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setJpegThumbnailQuality_added(int)" class="hiddenlink" target="rightframe"><b>setJpegThumbnailQuality</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setJpegThumbnailSize_added(int, int)" class="hiddenlink" target="rightframe"><b>setJpegThumbnailSize</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.setMasterSyncAutomatically_added(boolean)" class="hiddenlink" target="rightframe"><b>setMasterSyncAutomatically</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setName_changed(java.lang.String)" class="hiddenlink" target="rightframe">setName
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.setParameters_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setParameters</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setPath_changed(java.lang.String)" class="hiddenlink" target="rightframe">setPath
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.setPhotoData_changed(android.content.ContentResolver, android.net.Uri, byte[])" class="hiddenlink" target="rightframe">setPhotoData
+(<code>ContentResolver, Uri, byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setRotation_added(int)" class="hiddenlink" target="rightframe"><b>setRotation</b>
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.setRssi_changed(int)" class="hiddenlink" target="rightframe">setRssi
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setSceneMode_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setSceneMode</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.View.html#android.view.View.setScrollbarFadingEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setScrollbarFadingEnabled</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.setSetting_changed(android.content.ContentResolver, java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">setSetting
+(<code>ContentResolver, String, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.setSyncAutomatically_added(android.accounts.Account, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setSyncAutomatically</b>
+(<code>Account, String, boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.setUrlInterceptDisabled_changed(boolean)" class="hiddenlink" target="rightframe">setUrlInterceptDisabled
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setUseDoubleTree_changed(boolean)" class="hiddenlink" target="rightframe">setUseDoubleTree
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.SimpleCursorTreeAdapter.html#android.widget.SimpleCursorTreeAdapter.setViewBinder_added(android.widget.SimpleCursorTreeAdapter.ViewBinder)" class="hiddenlink" target="rightframe"><b>setViewBinder</b>
+(<code>ViewBinder</code>)</A></nobr><br>
+<nobr><A HREF="android.widget.SimpleCursorTreeAdapter.html#android.widget.SimpleCursorTreeAdapter.setViewText_added(android.widget.TextView, java.lang.String)" class="hiddenlink" target="rightframe"><b>setViewText</b>
+(<code>TextView, String</code>)</A></nobr><br>
+<i>setWallpaper</i><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.setWallpaper_changed(android.graphics.Bitmap)" class="hiddenlink" target="rightframe">type
+(<code>Bitmap</code>) in android.content.Context
+</A></nobr><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.setWallpaper_changed(java.io.InputStream)" class="hiddenlink" target="rightframe">type
+(<code>InputStream</code>) in android.content.Context
+</A></nobr><br>
+<nobr><A HREF="android.hardware.Camera.Parameters.html#android.hardware.Camera.Parameters.setWhiteBalance_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setWhiteBalance</b>
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.setWiredHeadsetOn_added(boolean)" class="hiddenlink" target="rightframe"><b>setWiredHeadsetOn</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.SurfaceView.html#android.view.SurfaceView.setZOrderMediaOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setZOrderMediaOverlay</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.view.SurfaceView.html#android.view.SurfaceView.setZOrderOnTop_added(boolean)" class="hiddenlink" target="rightframe"><b>setZOrderOnTop</b>
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.startForeground_added(int, android.app.Notification)" class="hiddenlink" target="rightframe"><b>startForeground</b>
+(<code>int, Notification</code>)</A></nobr><br>
+<i>startIntentSender</i><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>IntentSender, Intent, int, int, int</code>)</b> in android.content.Context
+</A></nobr><br>
+ <nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>IntentSender, Intent, int, int, int</code>)</b> in android.content.ContextWrapper
+</A></nobr><br>
+ <nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe">type <b>
+(<code>IntentSender, Intent, int, int, int</code>)</b> in android.test.mock.MockContext
+</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startIntentSenderForResult_added(android.content.IntentSender, int, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe"><b>startIntentSenderForResult</b>
+(<code>IntentSender, int, Intent, int, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Activity.html#android.app.Activity.startIntentSenderFromChild_added(android.app.Activity, android.content.IntentSender, int, android.content.Intent, int, int, int)" class="hiddenlink" target="rightframe"><b>startIntentSenderFromChild</b>
+(<code>Activity, IntentSender, int, Intent, int, int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.startSync_changed(android.net.Uri, android.os.Bundle)" class="hiddenlink" target="rightframe">startSync
+(<code>Uri, Bundle</code>)</A></nobr><br>
+<nobr><A HREF="android.media.ToneGenerator.html#android.media.ToneGenerator.startTone_added(int, int)" class="hiddenlink" target="rightframe"><b>startTone</b>
+(<code>int, int</code>)</A></nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.startTracking_added()" class="hiddenlink" target="rightframe"><b>startTracking</b>
+()</A></nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.stopForeground_added(boolean)" class="hiddenlink" target="rightframe"><b>stopForeground</b>
+(<code>boolean</code>)</A></nobr><br>
+<A NAME="T"></A>
+<br><font size="+2">T</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.takePicture_added(android.hardware.Camera.ShutterCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback)" class="hiddenlink" target="rightframe"><b>takePicture</b>
+(<code>ShutterCallback, PictureCallback, PictureCallback, PictureCallback</code>)</A></nobr><br>
+<i>triggerSearch</i><br>
+ <nobr><A HREF="android.app.Activity.html#android.app.Activity.triggerSearch_added(java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, Bundle</code>)</b> in android.app.Activity
+</A></nobr><br>
+ <nobr><A HREF="android.app.SearchManager.html#android.app.SearchManager.triggerSearch_added(java.lang.String, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe">type <b>
+(<code>String, ComponentName, Bundle</code>)</b> in android.app.SearchManager
+</A></nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#W"><font size="-2">W</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.hardware.Camera.html#android.hardware.Camera.unlock_added()" class="hiddenlink" target="rightframe"><b>unlock</b>
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.unregisterHandler_changed(android.webkit.UrlInterceptHandler)" class="hiddenlink" target="rightframe">unregisterHandler
+(<code>UrlInterceptHandler</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.urlInterceptDisabled_changed()" class="hiddenlink" target="rightframe">urlInterceptDisabled
+()</A></nobr><br>
+<A NAME="W"></A>
+<br><font size="+2">W</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#Y"><font size="-2">Y</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.os.Debug.MemoryInfo.html#android.os.Debug.MemoryInfo.writeToParcel_added(android.os.Parcel, int)" class="hiddenlink" target="rightframe"><b>writeToParcel</b>
+(<code>Parcel, int</code>)</A></nobr><br>
+<A NAME="Y"></A>
+<br><font size="+2">Y</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#B"><font size="-2">B</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#F"><font size="-2">F</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#H"><font size="-2">H</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#N"><font size="-2">N</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#T"><font size="-2">T</font></a>
+<a href="#U"><font size="-2">U</font></a>
+<a href="#W"><font size="-2">W</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.yieldIfContendedSafely_added(long)" class="hiddenlink" target="rightframe"><b>yieldIfContendedSafely</b>
+(<code>long</code>)</A></nobr><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/methods_index_changes.html b/docs/html/sdk/api_diff/5/changes/methods_index_changes.html
new file mode 100644
index 0000000..b555cfd
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/methods_index_changes.html
@@ -0,0 +1,447 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Method Changes Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Methods" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="methods_index_all.html" class="staysblack">All Methods</a>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<A HREF="methods_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<b>Changes</b>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<A NAME="A"></A>
+<br><font size="+2">A</font>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.addPlugin_changed(android.webkit.Plugin)" class="hiddenlink" target="rightframe">addPlugin
+(<code>Plugin</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.addPostalLocation_changed(android.content.Context, long, double, double)" class="hiddenlink" target="rightframe">addPostalLocation
+(<code>Context, long, double, double</code>)</A></nobr><br>
+<i>addToGroup</i><br>
+ <nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.addToGroup_changed(android.content.ContentResolver, long, java.lang.String)" class="hiddenlink" target="rightframe">type
+(<code>ContentResolver, long, String</code>) in android.provider.Contacts.People
+</A></nobr><br>
+ <nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.addToGroup_changed(android.content.ContentResolver, long, long)" class="hiddenlink" target="rightframe">type
+(<code>ContentResolver, long, long</code>) in android.provider.Contacts.People
+</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.addToMyContactsGroup_changed(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe">addToMyContactsGroup
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<A NAME="C"></A>
+<br><font size="+2">C</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.cancelSync_changed(android.net.Uri)" class="hiddenlink" target="rightframe">cancelSync
+(<code>Uri</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.clear_changed()" class="hiddenlink" target="rightframe">clear
+()</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.clearWallpaper_changed()" class="hiddenlink" target="rightframe">clearWallpaper
+()</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.createPersonInMyContactsGroup_changed(android.content.ContentResolver, android.content.ContentValues)" class="hiddenlink" target="rightframe">createPersonInMyContactsGroup
+(<code>ContentResolver, ContentValues</code>)</A></nobr><br>
+<A NAME="D"></A>
+<br><font size="+2">D</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.decodeImProtocol_changed(java.lang.String)" class="hiddenlink" target="rightframe">decodeImProtocol
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.view.KeyEvent.html#android.view.KeyEvent.dispatch_changed(android.view.KeyEvent.Callback)" class="hiddenlink" target="rightframe">dispatch
+(<code>Callback</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.dispatchClickEvent_changed(android.content.Context)" class="hiddenlink" target="rightframe">dispatchClickEvent
+(<code>Context</code>)</A></nobr><br>
+<A NAME="E"></A>
+<br><font size="+2">E</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.encodeCustomImProtocol_changed(java.lang.String)" class="hiddenlink" target="rightframe">encodeCustomImProtocol
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.encodePredefinedImProtocol_changed(int)" class="hiddenlink" target="rightframe">encodePredefinedImProtocol
+(<code>int</code>)</A></nobr><br>
+<A NAME="G"></A>
+<br><font size="+2">G</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getContentLength_changed()" class="hiddenlink" target="rightframe">getContentLength
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getDescription_changed()" class="hiddenlink" target="rightframe">getDescription
+()</A></nobr><br>
+<i>getDisplayLabel</i><br>
+ <nobr><A HREF="android.provider.Contacts.ContactMethods.html#android.provider.Contacts.ContactMethods.getDisplayLabel_changed(android.content.Context, int, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe">type
+(<code>Context, int, int, CharSequence</code>) in android.provider.Contacts.ContactMethods
+</A></nobr><br>
+ <nobr><A HREF="android.provider.Contacts.Organizations.html#android.provider.Contacts.Organizations.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe">type
+(<code>Context, int, CharSequence</code>) in android.provider.Contacts.Organizations
+</A></nobr><br>
+ <nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe">type
+(<code>Context, int, CharSequence</code>) in android.provider.Contacts.Phones
+</A></nobr><br>
+ <nobr><A HREF="android.provider.Contacts.Phones.html#android.provider.Contacts.Phones.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence, java.lang.CharSequence[])" class="hiddenlink" target="rightframe">type
+(<code>Context, int, CharSequence, CharSequence[]</code>) in android.provider.Contacts.Phones
+</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getFileName_changed()" class="hiddenlink" target="rightframe">getFileName
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getHeaders_changed()" class="hiddenlink" target="rightframe">getHeaders
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getInputStream_changed()" class="hiddenlink" target="rightframe">getInputStream
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.getList_changed()" class="hiddenlink" target="rightframe">getList
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getName_changed()" class="hiddenlink" target="rightframe">getName
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.getPath_changed()" class="hiddenlink" target="rightframe">getPath
+()</A></nobr><br>
+<i>getPluginData</i><br>
+ <nobr><A HREF="android.webkit.UrlInterceptHandler.html#android.webkit.UrlInterceptHandler.getPluginData_changed(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type
+(<code>String, Map<String, String></code>) in android.webkit.UrlInterceptHandler
+</A></nobr><br>
+ <nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.getPluginData_changed(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type
+(<code>String, Map<String, String></code>) in android.webkit.UrlInterceptRegistry
+</A></nobr><br>
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.getPluginList_changed()" class="hiddenlink" target="rightframe">getPluginList
+()</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.getSetting_changed(android.content.ContentResolver, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">getSetting
+(<code>ContentResolver, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginData.html#android.webkit.PluginData.getStatusCode_changed()" class="hiddenlink" target="rightframe">getStatusCode
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getUseDoubleTree_changed()" class="hiddenlink" target="rightframe">getUseDoubleTree
+()</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.getWallpaper_changed()" class="hiddenlink" target="rightframe">getWallpaper
+()</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.getWallpaperDesiredMinimumHeight_changed()" class="hiddenlink" target="rightframe">getWallpaperDesiredMinimumHeight
+()</A></nobr><br>
+<nobr><A HREF="android.content.Context.html#android.content.Context.getWallpaperDesiredMinimumWidth_changed()" class="hiddenlink" target="rightframe">getWallpaperDesiredMinimumWidth
+()</A></nobr><br>
+<A NAME="I"></A>
+<br><font size="+2">I</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.test.InstrumentationTestCase.html#android.test.InstrumentationTestCase.injectInsrumentation_changed(android.app.Instrumentation)" class="hiddenlink" target="rightframe">injectInsrumentation
+(<code>Instrumentation</code>)</A></nobr><br>
+<A NAME="L"></A>
+<br><font size="+2">L</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.loadContactPhoto_changed(android.content.Context, android.net.Uri, int, android.graphics.BitmapFactory.Options)" class="hiddenlink" target="rightframe">loadContactPhoto
+(<code>Context, Uri, int, Options</code>)</A></nobr><br>
+<nobr><A HREF="android.view.Surface.html#android.view.Surface.lockCanvas_changed(android.graphics.Rect)" class="hiddenlink" target="rightframe">lockCanvas
+(<code>Rect</code>)</A></nobr><br>
+<A NAME="M"></A>
+<br><font size="+2">M</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.markAsContacted_changed(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe">markAsContacted
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<A NAME="O"></A>
+<br><font size="+2">O</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.telephony.PhoneStateListener.html#android.telephony.PhoneStateListener.onSignalStrengthChanged_changed(int)" class="hiddenlink" target="rightframe">onSignalStrengthChanged
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.onStart_changed(android.content.Intent, int)" class="hiddenlink" target="rightframe">onStart
+(<code>Intent, int</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.openContactPhotoInputStream_changed(android.content.ContentResolver, android.net.Uri)" class="hiddenlink" target="rightframe">openContactPhotoInputStream
+(<code>ContentResolver, Uri</code>)</A></nobr><br>
+<A NAME="P"></A>
+<br><font size="+2">P</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.content.Context.html#android.content.Context.peekWallpaper_changed()" class="hiddenlink" target="rightframe">peekWallpaper
+()</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.pluginClicked_changed(android.content.Context, int)" class="hiddenlink" target="rightframe">pluginClicked
+(<code>Context, int</code>)</A></nobr><br>
+<A NAME="Q"></A>
+<br><font size="+2">Q</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.queryGroups_changed(android.content.ContentResolver, long)" class="hiddenlink" target="rightframe">queryGroups
+(<code>ContentResolver, long</code>)</A></nobr><br>
+<A NAME="R"></A>
+<br><font size="+2">R</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#S"><font size="-2">S</font></a>
+<a href="#U"><font size="-2">U</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.refreshPlugins_changed(boolean)" class="hiddenlink" target="rightframe">refreshPlugins
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.registerHandler_changed(android.webkit.UrlInterceptHandler)" class="hiddenlink" target="rightframe">registerHandler
+(<code>UrlInterceptHandler</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.PluginList.html#android.webkit.PluginList.removePlugin_changed(android.webkit.Plugin)" class="hiddenlink" target="rightframe">removePlugin
+(<code>Plugin</code>)</A></nobr><br>
+<A NAME="S"></A>
+<br><font size="+2">S</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#U"><font size="-2">U</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.setBluetoothA2dpOn_changed(boolean)" class="hiddenlink" target="rightframe">setBluetoothA2dpOn
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.setCid_changed(int)" class="hiddenlink" target="rightframe">setCid
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setClickHandler_changed(android.webkit.Plugin.PreferencesClickHandler)" class="hiddenlink" target="rightframe">setClickHandler
+(<code>PreferencesClickHandler</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setDescription_changed(java.lang.String)" class="hiddenlink" target="rightframe">setDescription
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setFileName_changed(java.lang.String)" class="hiddenlink" target="rightframe">setFileName
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.app.Service.html#android.app.Service.setForeground_changed(boolean)" class="hiddenlink" target="rightframe">setForeground
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.test.AndroidTestRunner.html#android.test.AndroidTestRunner.setInstrumentaiton_changed(android.app.Instrumentation)" class="hiddenlink" target="rightframe">setInstrumentaiton
+(<code>Instrumentation</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setName_changed(java.lang.String)" class="hiddenlink" target="rightframe">setName
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.Plugin.html#android.webkit.Plugin.setPath_changed(java.lang.String)" class="hiddenlink" target="rightframe">setPath
+(<code>String</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.People.html#android.provider.Contacts.People.setPhotoData_changed(android.content.ContentResolver, android.net.Uri, byte[])" class="hiddenlink" target="rightframe">setPhotoData
+(<code>ContentResolver, Uri, byte[]</code>)</A></nobr><br>
+<nobr><A HREF="android.telephony.NeighboringCellInfo.html#android.telephony.NeighboringCellInfo.setRssi_changed(int)" class="hiddenlink" target="rightframe">setRssi
+(<code>int</code>)</A></nobr><br>
+<nobr><A HREF="android.provider.Contacts.Settings.html#android.provider.Contacts.Settings.setSetting_changed(android.content.ContentResolver, java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">setSetting
+(<code>ContentResolver, String, String, String</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.setUrlInterceptDisabled_changed(boolean)" class="hiddenlink" target="rightframe">setUrlInterceptDisabled
+(<code>boolean</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setUseDoubleTree_changed(boolean)" class="hiddenlink" target="rightframe">setUseDoubleTree
+(<code>boolean</code>)</A></nobr><br>
+<i>setWallpaper</i><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.setWallpaper_changed(android.graphics.Bitmap)" class="hiddenlink" target="rightframe">type
+(<code>Bitmap</code>) in android.content.Context
+</A></nobr><br>
+ <nobr><A HREF="android.content.Context.html#android.content.Context.setWallpaper_changed(java.io.InputStream)" class="hiddenlink" target="rightframe">type
+(<code>InputStream</code>) in android.content.Context
+</A></nobr><br>
+<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.startSync_changed(android.net.Uri, android.os.Bundle)" class="hiddenlink" target="rightframe">startSync
+(<code>Uri, Bundle</code>)</A></nobr><br>
+<A NAME="U"></A>
+<br><font size="+2">U</font>
+<a href="#A"><font size="-2">A</font></a>
+<a href="#C"><font size="-2">C</font></a>
+<a href="#D"><font size="-2">D</font></a>
+<a href="#E"><font size="-2">E</font></a>
+<a href="#G"><font size="-2">G</font></a>
+<a href="#I"><font size="-2">I</font></a>
+<a href="#L"><font size="-2">L</font></a>
+<a href="#M"><font size="-2">M</font></a>
+<a href="#O"><font size="-2">O</font></a>
+<a href="#P"><font size="-2">P</font></a>
+<a href="#Q"><font size="-2">Q</font></a>
+<a href="#R"><font size="-2">R</font></a>
+<a href="#S"><font size="-2">S</font></a>
+ <a href="#topheader"><font size="-2">TOP</font></a>
+<p><div style="line-height:1.5em;color:black">
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.unregisterHandler_changed(android.webkit.UrlInterceptHandler)" class="hiddenlink" target="rightframe">unregisterHandler
+(<code>UrlInterceptHandler</code>)</A></nobr><br>
+<nobr><A HREF="android.webkit.UrlInterceptRegistry.html#android.webkit.UrlInterceptRegistry.urlInterceptDisabled_changed()" class="hiddenlink" target="rightframe">urlInterceptDisabled
+()</A></nobr><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/methods_index_removals.html b/docs/html/sdk/api_diff/5/changes/methods_index_removals.html
new file mode 100644
index 0000000..c2be1d7
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/methods_index_removals.html
@@ -0,0 +1,61 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Method Removals Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Methods" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="methods_index_all.html" class="staysblack">All Methods</a>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<A HREF="methods_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<A HREF="methods_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/packages_index_additions.html b/docs/html/sdk/api_diff/5/changes/packages_index_additions.html
new file mode 100644
index 0000000..96aca20
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/packages_index_additions.html
@@ -0,0 +1,67 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Package Additions Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Packages" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="packages_index_all.html" class="staysblack">All Packages</a>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<b>Additions</b>
+ <br>
+<A HREF="packages_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<br>
+<div id="indexTableEntries">
+<A NAME="A"></A>
+<A HREF="changes-summary.html#android.accounts" class="hiddenlink" target="rightframe"><b>android.accounts</b></A><br>
+<A HREF="changes-summary.html#android.bluetooth" class="hiddenlink" target="rightframe"><b>android.bluetooth</b></A><br>
+<A HREF="changes-summary.html#android.telephony.cdma" class="hiddenlink" target="rightframe"><b>android.telephony.cdma</b></A><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/packages_index_all.html b/docs/html/sdk/api_diff/5/changes/packages_index_all.html
new file mode 100644
index 0000000..73f5da1
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/packages_index_all.html
@@ -0,0 +1,102 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Package Differences Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Packages" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<b>Packages</b>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<A HREF="packages_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<A HREF="packages_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<br>
+<div id="indexTableEntries">
+<A NAME="A"></A>
+<A HREF="pkg_android.html" class="hiddenlink" target="rightframe">android</A><br>
+<A HREF="changes-summary.html#android.accounts" class="hiddenlink" target="rightframe"><b>android.accounts</b></A><br>
+<A HREF="pkg_android.app.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<A HREF="changes-summary.html#android.bluetooth" class="hiddenlink" target="rightframe"><b>android.bluetooth</b></A><br>
+<A HREF="pkg_android.content.html" class="hiddenlink" target="rightframe">android.content</A><br>
+<A HREF="pkg_android.content.pm.html" class="hiddenlink" target="rightframe">android.content.pm</A><br>
+<A HREF="pkg_android.content.res.html" class="hiddenlink" target="rightframe">android.content.res</A><br>
+<A HREF="pkg_android.database.html" class="hiddenlink" target="rightframe">android.database</A><br>
+<A HREF="pkg_android.database.sqlite.html" class="hiddenlink" target="rightframe">android.database.sqlite</A><br>
+<A HREF="pkg_android.graphics.html" class="hiddenlink" target="rightframe">android.graphics</A><br>
+<A HREF="pkg_android.graphics.drawable.html" class="hiddenlink" target="rightframe">android.graphics.drawable</A><br>
+<A HREF="pkg_android.hardware.html" class="hiddenlink" target="rightframe">android.hardware</A><br>
+<A HREF="pkg_android.inputmethodservice.html" class="hiddenlink" target="rightframe">android.inputmethodservice</A><br>
+<A HREF="pkg_android.location.html" class="hiddenlink" target="rightframe">android.location</A><br>
+<A HREF="pkg_android.media.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<A HREF="pkg_android.opengl.html" class="hiddenlink" target="rightframe">android.opengl</A><br>
+<A HREF="pkg_android.os.html" class="hiddenlink" target="rightframe">android.os</A><br>
+<A HREF="pkg_android.provider.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<A HREF="pkg_android.telephony.html" class="hiddenlink" target="rightframe">android.telephony</A><br>
+<A HREF="changes-summary.html#android.telephony.cdma" class="hiddenlink" target="rightframe"><b>android.telephony.cdma</b></A><br>
+<A HREF="pkg_android.test.html" class="hiddenlink" target="rightframe">android.test</A><br>
+<A HREF="pkg_android.test.mock.html" class="hiddenlink" target="rightframe">android.test.mock</A><br>
+<A HREF="pkg_android.text.html" class="hiddenlink" target="rightframe">android.text</A><br>
+<A HREF="pkg_android.text.format.html" class="hiddenlink" target="rightframe">android.text.format</A><br>
+<A HREF="pkg_android.text.style.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<A HREF="pkg_android.util.html" class="hiddenlink" target="rightframe">android.util</A><br>
+<A HREF="pkg_android.view.html" class="hiddenlink" target="rightframe">android.view</A><br>
+<A HREF="pkg_android.view.animation.html" class="hiddenlink" target="rightframe">android.view.animation</A><br>
+<A HREF="pkg_android.webkit.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<A HREF="pkg_android.widget.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<A NAME="D"></A>
+<A HREF="pkg_dalvik.system.html" class="hiddenlink" target="rightframe">dalvik.system</A><br>
+<A NAME="J"></A>
+<A HREF="pkg_java.lang.html" class="hiddenlink" target="rightframe">java.lang</A><br>
+<A HREF="pkg_java.net.html" class="hiddenlink" target="rightframe">java.net</A><br>
+<A HREF="pkg_java.util.html" class="hiddenlink" target="rightframe">java.util</A><br>
+<A HREF="pkg_java.util.concurrent.html" class="hiddenlink" target="rightframe">java.util.concurrent</A><br>
+<A HREF="pkg_java.util.concurrent.locks.html" class="hiddenlink" target="rightframe">java.util.concurrent.locks</A><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/packages_index_changes.html b/docs/html/sdk/api_diff/5/changes/packages_index_changes.html
new file mode 100644
index 0000000..fbdb41e
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/packages_index_changes.html
@@ -0,0 +1,99 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Package Changes Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Packages" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="packages_index_all.html" class="staysblack">All Packages</a>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<A HREF="packages_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<b>Changes</b>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<br>
+<div id="indexTableEntries">
+<A NAME="A"></A>
+<A HREF="pkg_android.html" class="hiddenlink" target="rightframe">android</A><br>
+<A HREF="pkg_android.app.html" class="hiddenlink" target="rightframe">android.app</A><br>
+<A HREF="pkg_android.content.html" class="hiddenlink" target="rightframe">android.content</A><br>
+<A HREF="pkg_android.content.pm.html" class="hiddenlink" target="rightframe">android.content.pm</A><br>
+<A HREF="pkg_android.content.res.html" class="hiddenlink" target="rightframe">android.content.res</A><br>
+<A HREF="pkg_android.database.html" class="hiddenlink" target="rightframe">android.database</A><br>
+<A HREF="pkg_android.database.sqlite.html" class="hiddenlink" target="rightframe">android.database.sqlite</A><br>
+<A HREF="pkg_android.graphics.html" class="hiddenlink" target="rightframe">android.graphics</A><br>
+<A HREF="pkg_android.graphics.drawable.html" class="hiddenlink" target="rightframe">android.graphics.drawable</A><br>
+<A HREF="pkg_android.hardware.html" class="hiddenlink" target="rightframe">android.hardware</A><br>
+<A HREF="pkg_android.inputmethodservice.html" class="hiddenlink" target="rightframe">android.inputmethodservice</A><br>
+<A HREF="pkg_android.location.html" class="hiddenlink" target="rightframe">android.location</A><br>
+<A HREF="pkg_android.media.html" class="hiddenlink" target="rightframe">android.media</A><br>
+<A HREF="pkg_android.opengl.html" class="hiddenlink" target="rightframe">android.opengl</A><br>
+<A HREF="pkg_android.os.html" class="hiddenlink" target="rightframe">android.os</A><br>
+<A HREF="pkg_android.provider.html" class="hiddenlink" target="rightframe">android.provider</A><br>
+<A HREF="pkg_android.telephony.html" class="hiddenlink" target="rightframe">android.telephony</A><br>
+<A HREF="pkg_android.test.html" class="hiddenlink" target="rightframe">android.test</A><br>
+<A HREF="pkg_android.test.mock.html" class="hiddenlink" target="rightframe">android.test.mock</A><br>
+<A HREF="pkg_android.text.html" class="hiddenlink" target="rightframe">android.text</A><br>
+<A HREF="pkg_android.text.format.html" class="hiddenlink" target="rightframe">android.text.format</A><br>
+<A HREF="pkg_android.text.style.html" class="hiddenlink" target="rightframe">android.text.style</A><br>
+<A HREF="pkg_android.util.html" class="hiddenlink" target="rightframe">android.util</A><br>
+<A HREF="pkg_android.view.html" class="hiddenlink" target="rightframe">android.view</A><br>
+<A HREF="pkg_android.view.animation.html" class="hiddenlink" target="rightframe">android.view.animation</A><br>
+<A HREF="pkg_android.webkit.html" class="hiddenlink" target="rightframe">android.webkit</A><br>
+<A HREF="pkg_android.widget.html" class="hiddenlink" target="rightframe">android.widget</A><br>
+<A NAME="D"></A>
+<A HREF="pkg_dalvik.system.html" class="hiddenlink" target="rightframe">dalvik.system</A><br>
+<A NAME="J"></A>
+<A HREF="pkg_java.lang.html" class="hiddenlink" target="rightframe">java.lang</A><br>
+<A HREF="pkg_java.net.html" class="hiddenlink" target="rightframe">java.net</A><br>
+<A HREF="pkg_java.util.html" class="hiddenlink" target="rightframe">java.util</A><br>
+<A HREF="pkg_java.util.concurrent.html" class="hiddenlink" target="rightframe">java.util.concurrent</A><br>
+<A HREF="pkg_java.util.concurrent.locks.html" class="hiddenlink" target="rightframe">java.util.concurrent.locks</A><br>
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/packages_index_removals.html b/docs/html/sdk/api_diff/5/changes/packages_index_removals.html
new file mode 100644
index 0000000..d4d0afb
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/packages_index_removals.html
@@ -0,0 +1,63 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+Package Removals Index
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY class="gc-documentation" style="padding:12px;">
+<a NAME="topheader"></a>
+<table summary="Index for Packages" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
+ <tr>
+ <th class="indexHeader">
+ Filter the Index:
+ </th>
+ </tr>
+ <tr>
+ <td class="indexText" style="line-height:1.3em;padding-left:2em;">
+<a href="packages_index_all.html" class="staysblack">All Packages</a>
+ <br>
+<font color="#999999">Removals</font>
+ <br>
+<A HREF="packages_index_additions.html"xclass="hiddenlink">Additions</A>
+ <br>
+<A HREF="packages_index_changes.html"xclass="hiddenlink">Changes</A>
+ </td>
+ </tr>
+</table>
+<div id="indexTableCaption">
+<font size="-2"><strong>Bold</strong> indicates New; <strike>Strike</strike> indicates deleted. Plain indicates changed.</font>
+</div>
+<br>
+<div id="indexTableEntries">
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.app.html b/docs/html/sdk/api_diff/5/changes/pkg_android.app.html
new file mode 100644
index 0000000..7cbfac9
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.app.html
@@ -0,0 +1,204 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.app
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/app/package-summary.html" target="_top"><font size="+1"><code>android.app</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="WallpaperManager"></A>
+ <nobr><A HREF="../../../../reference/android/app/WallpaperManager.html" target="_top"><code>WallpaperManager</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Activity"></A>
+ <nobr><A HREF="android.app.Activity.html">Activity</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ActivityManager"></A>
+ <nobr><A HREF="android.app.ActivityManager.html">ActivityManager</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ActivityManager.RunningAppProcessInfo"></A>
+ <nobr><A HREF="android.app.ActivityManager.RunningAppProcessInfo.html">ActivityManager.RunningAppProcessInfo</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ActivityManager.RunningServiceInfo"></A>
+ <nobr><A HREF="android.app.ActivityManager.RunningServiceInfo.html">ActivityManager.RunningServiceInfo</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Dialog"></A>
+ <nobr><A HREF="android.app.Dialog.html">Dialog</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="IntentService"></A>
+ <nobr><A HREF="android.app.IntentService.html">IntentService</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="LauncherActivity"></A>
+ <nobr><A HREF="android.app.LauncherActivity.html">LauncherActivity</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Notification"></A>
+ <nobr><A HREF="android.app.Notification.html">Notification</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="NotificationManager"></A>
+ <nobr><A HREF="android.app.NotificationManager.html">NotificationManager</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SearchManager"></A>
+ <nobr><A HREF="android.app.SearchManager.html">SearchManager</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Service"></A>
+ <nobr><A HREF="android.app.Service.html">Service</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.content.html b/docs/html/sdk/api_diff/5/changes/pkg_android.content.html
new file mode 100644
index 0000000..8474af5
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.content.html
@@ -0,0 +1,239 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/content/package-summary.html" target="_top"><font size="+1"><code>android.content</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Classes and Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Classes and Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="AbstractThreadedSyncAdapter"></A>
+ <nobr><A HREF="../../../../reference/android/content/AbstractThreadedSyncAdapter.html" target="_top"><code>AbstractThreadedSyncAdapter</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContentProviderClient"></A>
+ <nobr><A HREF="../../../../reference/android/content/ContentProviderClient.html" target="_top"><code>ContentProviderClient</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContentProviderOperation"></A>
+ <nobr><A HREF="../../../../reference/android/content/ContentProviderOperation.html" target="_top"><code>ContentProviderOperation</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContentProviderOperation.Builder"></A>
+ <nobr><A HREF="../../../../reference/android/content/ContentProviderOperation.Builder.html" target="_top"><code>ContentProviderOperation.<br>Builder</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContentProviderResult"></A>
+ <nobr><A HREF="../../../../reference/android/content/ContentProviderResult.html" target="_top"><code>ContentProviderResult</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="OperationApplicationException"></A>
+ <nobr><A HREF="../../../../reference/android/content/OperationApplicationException.html" target="_top"><code>OperationApplicationException</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SyncAdapterType"></A>
+ <nobr><A HREF="../../../../reference/android/content/SyncAdapterType.html" target="_top"><code>SyncAdapterType</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SyncContext"></A>
+ <nobr><A HREF="../../../../reference/android/content/SyncContext.html" target="_top"><code>SyncContext</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SyncResult"></A>
+ <nobr><A HREF="../../../../reference/android/content/SyncResult.html" target="_top"><code>SyncResult</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SyncStats"></A>
+ <nobr><A HREF="../../../../reference/android/content/SyncStats.html" target="_top"><code>SyncStats</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SyncStatusObserver"></A>
+ <nobr><A HREF="../../../../reference/android/content/SyncStatusObserver.html" target="_top"><code><I>SyncStatusObserver</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="BroadcastReceiver"></A>
+ <nobr><A HREF="android.content.BroadcastReceiver.html">BroadcastReceiver</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContentProvider"></A>
+ <nobr><A HREF="android.content.ContentProvider.html">ContentProvider</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContentResolver"></A>
+ <nobr><A HREF="android.content.ContentResolver.html">ContentResolver</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Context"></A>
+ <nobr><A HREF="android.content.Context.html">Context</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContextWrapper"></A>
+ <nobr><A HREF="android.content.ContextWrapper.html">ContextWrapper</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Intent"></A>
+ <nobr><A HREF="android.content.Intent.html">Intent</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.content.pm.html b/docs/html/sdk/api_diff/5/changes/pkg_android.content.pm.html
new file mode 100644
index 0000000..a58c151
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.content.pm.html
@@ -0,0 +1,176 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.pm
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/content/pm/package-summary.html" target="_top"><font size="+1"><code>android.content.pm</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="FeatureInfo"></A>
+ <nobr><A HREF="../../../../reference/android/content/pm/FeatureInfo.html" target="_top"><code>FeatureInfo</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="LabeledIntent"></A>
+ <nobr><A HREF="../../../../reference/android/content/pm/LabeledIntent.html" target="_top"><code>LabeledIntent</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ActivityInfo"></A>
+ <nobr><A HREF="android.content.pm.ActivityInfo.html">ActivityInfo</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="PackageInfo"></A>
+ <nobr><A HREF="android.content.pm.PackageInfo.html">PackageInfo</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="PackageManager"></A>
+ <nobr><A HREF="android.content.pm.PackageManager.html">PackageManager</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ProviderInfo"></A>
+ <nobr><A HREF="android.content.pm.ProviderInfo.html">ProviderInfo</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ResolveInfo"></A>
+ <nobr><A HREF="android.content.pm.ResolveInfo.html">ResolveInfo</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ServiceInfo"></A>
+ <nobr><A HREF="android.content.pm.ServiceInfo.html">ServiceInfo</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.content.res.html b/docs/html/sdk/api_diff/5/changes/pkg_android.content.res.html
new file mode 100644
index 0000000..7f8ae7ea
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.content.res.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.content.res
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/content/res/package-summary.html" target="_top"><font size="+1"><code>android.content.res</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Configuration"></A>
+ <nobr><A HREF="android.content.res.Configuration.html">Configuration</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.database.html b/docs/html/sdk/api_diff/5/changes/pkg_android.database.html
new file mode 100644
index 0000000..8052856
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.database.html
@@ -0,0 +1,133 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.database
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/database/package-summary.html" target="_top"><font size="+1"><code>android.database</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="AbstractWindowedCursor"></A>
+ <nobr><A HREF="android.database.AbstractWindowedCursor.html">AbstractWindowedCursor</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="CursorWindow"></A>
+ <nobr><A HREF="android.database.CursorWindow.html">CursorWindow</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="DatabaseUtils"></A>
+ <nobr><A HREF="android.database.DatabaseUtils.html">DatabaseUtils</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.database.sqlite.html b/docs/html/sdk/api_diff/5/changes/pkg_android.database.sqlite.html
new file mode 100644
index 0000000..15484eb
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.database.sqlite.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.database.sqlite
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/database/sqlite/package-summary.html" target="_top"><font size="+1"><code>android.database.sqlite</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SQLiteTransactionListener"></A>
+ <nobr><A HREF="../../../../reference/android/database/sqlite/SQLiteTransactionListener.html" target="_top"><code><I>SQLiteTransactionListener</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SQLiteDatabase"></A>
+ <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html">SQLiteDatabase</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.graphics.drawable.html b/docs/html/sdk/api_diff/5/changes/pkg_android.graphics.drawable.html
new file mode 100644
index 0000000..dd6f427
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.graphics.drawable.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.graphics.drawable
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/graphics/drawable/package-summary.html" target="_top"><font size="+1"><code>android.graphics.drawable</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="BitmapDrawable"></A>
+ <nobr><A HREF="android.graphics.drawable.BitmapDrawable.html">BitmapDrawable</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Drawable"></A>
+ <nobr><A HREF="android.graphics.drawable.Drawable.html">Drawable</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Drawable.ConstantState"></A>
+ <nobr><A HREF="android.graphics.drawable.Drawable.ConstantState.html">Drawable.ConstantState</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="NinePatchDrawable"></A>
+ <nobr><A HREF="android.graphics.drawable.NinePatchDrawable.html">NinePatchDrawable</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.graphics.html b/docs/html/sdk/api_diff/5/changes/pkg_android.graphics.html
new file mode 100644
index 0000000..3e540a0
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.graphics.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.graphics
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/graphics/package-summary.html" target="_top"><font size="+1"><code>android.graphics</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="PixelFormat"></A>
+ <nobr><A HREF="android.graphics.PixelFormat.html">PixelFormat</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.hardware.html b/docs/html/sdk/api_diff/5/changes/pkg_android.hardware.html
new file mode 100644
index 0000000..b042678
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.hardware.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.hardware
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/hardware/package-summary.html" target="_top"><font size="+1"><code>android.hardware</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Camera"></A>
+ <nobr><A HREF="android.hardware.Camera.html">Camera</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Camera.Parameters"></A>
+ <nobr><A HREF="android.hardware.Camera.Parameters.html">Camera.Parameters</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.html b/docs/html/sdk/api_diff/5/changes/pkg_android.html
new file mode 100644
index 0000000..b16e8cc
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/package-summary.html" target="_top"><font size="+1"><code>android</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Manifest.permission"></A>
+ <nobr><A HREF="android.Manifest.permission.html">Manifest.permission</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="R.attr"></A>
+ <nobr><A HREF="android.R.attr.html">R.attr</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="R.drawable"></A>
+ <nobr><A HREF="android.R.drawable.html">R.drawable</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="R.style"></A>
+ <nobr><A HREF="android.R.style.html">R.style</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.inputmethodservice.html b/docs/html/sdk/api_diff/5/changes/pkg_android.inputmethodservice.html
new file mode 100644
index 0000000..457dc55
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.inputmethodservice.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.inputmethodservice
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/inputmethodservice/package-summary.html" target="_top"><font size="+1"><code>android.inputmethodservice</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="AbstractInputMethodService"></A>
+ <nobr><A HREF="android.inputmethodservice.AbstractInputMethodService.html">AbstractInputMethodService</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="InputMethodService"></A>
+ <nobr><A HREF="android.inputmethodservice.InputMethodService.html">InputMethodService</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.location.html b/docs/html/sdk/api_diff/5/changes/pkg_android.location.html
new file mode 100644
index 0000000..f67a280
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.location.html
@@ -0,0 +1,134 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.location
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/location/package-summary.html" target="_top"><font size="+1"><code>android.location</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="GpsStatus.NmeaListener"></A>
+ <nobr><A HREF="../../../../reference/android/location/GpsStatus.NmeaListener.html" target="_top"><code><I>GpsStatus.NmeaListener</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="LocationManager"></A>
+ <nobr><A HREF="android.location.LocationManager.html">LocationManager</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.media.html b/docs/html/sdk/api_diff/5/changes/pkg_android.media.html
new file mode 100644
index 0000000..0b27798
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.media.html
@@ -0,0 +1,155 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.media
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/media/package-summary.html" target="_top"><font size="+1"><code>android.media</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ExifInterface"></A>
+ <nobr><A HREF="../../../../reference/android/media/ExifInterface.html" target="_top"><code>ExifInterface</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="AudioFormat"></A>
+ <nobr><A HREF="android.media.AudioFormat.html">AudioFormat</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="AudioManager"></A>
+ <nobr><A HREF="android.media.AudioManager.html">AudioManager</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="MediaPlayer"></A>
+ <nobr><A HREF="android.media.MediaPlayer.html">MediaPlayer</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ToneGenerator"></A>
+ <nobr><A HREF="android.media.ToneGenerator.html">ToneGenerator</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.opengl.html b/docs/html/sdk/api_diff/5/changes/pkg_android.opengl.html
new file mode 100644
index 0000000..e58bad2
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.opengl.html
@@ -0,0 +1,141 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.opengl
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/opengl/package-summary.html" target="_top"><font size="+1"><code>android.opengl</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="GLSurfaceView.EGLContextFactory"></A>
+ <nobr><A HREF="../../../../reference/android/opengl/GLSurfaceView.EGLContextFactory.html" target="_top"><code><I>GLSurfaceView.EGLContextFactory</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="GLSurfaceView.EGLWindowSurfaceFactory"></A>
+ <nobr><A HREF="../../../../reference/android/opengl/GLSurfaceView.EGLWindowSurfaceFactory.html" target="_top"><code><I>GLSurfaceView.EGLWindowSurfaceFactory</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="GLSurfaceView"></A>
+ <nobr><A HREF="android.opengl.GLSurfaceView.html">GLSurfaceView</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.os.html b/docs/html/sdk/api_diff/5/changes/pkg_android.os.html
new file mode 100644
index 0000000..bf1bcf4
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.os.html
@@ -0,0 +1,155 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.os
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/os/package-summary.html" target="_top"><font size="+1"><code>android.os</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ParcelUuid"></A>
+ <nobr><A HREF="../../../../reference/android/os/ParcelUuid.html" target="_top"><code>ParcelUuid</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="BatteryManager"></A>
+ <nobr><A HREF="android.os.BatteryManager.html">BatteryManager</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Build.VERSION_CODES"></A>
+ <nobr><A HREF="android.os.Build.VERSION_CODES.html">Build.VERSION_CODES</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Debug.MemoryInfo"></A>
+ <nobr><A HREF="android.os.Debug.MemoryInfo.html">Debug.MemoryInfo</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="HandlerThread"></A>
+ <nobr><A HREF="android.os.HandlerThread.html">HandlerThread</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.provider.html b/docs/html/sdk/api_diff/5/changes/pkg_android.provider.html
new file mode 100644
index 0000000..3896ff4
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.provider.html
@@ -0,0 +1,694 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.provider
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/provider/package-summary.html" target="_top"><font size="+1"><code>android.provider</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Classes and Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Classes and Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.html" target="_top"><code>ContactsContract</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.AggregationExceptions"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.AggregationExceptions.html" target="_top"><code>ContactsContract.AggregationExceptions</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.BaseSyncColumns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.BaseSyncColumns.html" target="_top"><code><I>ContactsContract.BaseSyncColumns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.html" target="_top"><code>ContactsContract.CommonDataKinds</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.BaseTypes"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.BaseTypes.html" target="_top"><code><I>ContactsContract.CommonDataKinds.<br>BaseTypes</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.CommonColumns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.CommonColumns.html" target="_top"><code><I>ContactsContract.CommonDataKinds.<br>CommonColumns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.Email"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Email.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>Email</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.Event"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Event.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>Event</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.GroupMembership"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.GroupMembership.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>GroupMembership</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.Im"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Im.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>Im</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.Nickname"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Nickname.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>Nickname</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.Note"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Note.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>Note</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.Organization"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Organization.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>Organization</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.Phone"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Phone.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>Phone</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.Photo"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Photo.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>Photo</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.Relation"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Relation.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>Relation</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.StructuredName"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredName.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>StructuredName</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.StructuredPostal"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.StructuredPostal.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>StructuredPostal</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.CommonDataKinds.Website"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.CommonDataKinds.Website.html" target="_top"><code>ContactsContract.CommonDataKinds.<br>Website</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.ContactOptionsColumns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.ContactOptionsColumns.html" target="_top"><code><I>ContactsContract.ContactOptionsColumns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.ContactStatusColumns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.ContactStatusColumns.html" target="_top"><code><I>ContactsContract.ContactStatusColumns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.Contacts"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.Contacts.html" target="_top"><code>ContactsContract.Contacts</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.Contacts.AggregationSuggestions"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.Contacts.AggregationSuggestions.html" target="_top"><code>ContactsContract.Contacts.<br>AggregationSuggestions</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.Contacts.Data"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.Contacts.Data.html" target="_top"><code>ContactsContract.Contacts.<br>Data</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.Contacts.Photo"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.Contacts.Photo.html" target="_top"><code>ContactsContract.Contacts.<br>Photo</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.ContactsColumns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.ContactsColumns.html" target="_top"><code><I>ContactsContract.ContactsColumns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.Data"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.Data.html" target="_top"><code>ContactsContract.Data</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.DataColumns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.DataColumns.html" target="_top"><code><I>ContactsContract.DataColumns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.DataColumnsWithJoins"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.DataColumnsWithJoins.html" target="_top"><code><I>ContactsContract.DataColumnsWithJoins</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.Groups"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.Groups.html" target="_top"><code>ContactsContract.Groups</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.GroupsColumns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.GroupsColumns.html" target="_top"><code><I>ContactsContract.GroupsColumns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.Intents"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.Intents.html" target="_top"><code>ContactsContract.Intents</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.Intents.Insert"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.Intents.Insert.html" target="_top"><code>ContactsContract.Intents.<br>Insert</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.PhoneLookup"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.PhoneLookup.html" target="_top"><code>ContactsContract.PhoneLookup</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.PhoneLookupColumns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.PhoneLookupColumns.html" target="_top"><code><I>ContactsContract.PhoneLookupColumns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.Presence"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.Presence.html" target="_top"><code>ContactsContract.Presence</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.PresenceColumns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.PresenceColumns.html" target="_top"><code><I>ContactsContract.PresenceColumns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.QuickContact"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.QuickContact.html" target="_top"><code>ContactsContract.QuickContact</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.RawContacts"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.RawContacts.html" target="_top"><code>ContactsContract.RawContacts</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.RawContacts.Data"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.RawContacts.Data.html" target="_top"><code>ContactsContract.RawContacts.<br>Data</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.RawContacts.Entity"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.RawContacts.Entity.html" target="_top"><code>ContactsContract.RawContacts.<br>Entity</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.RawContactsColumns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.RawContactsColumns.html" target="_top"><code><I>ContactsContract.RawContactsColumns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.RawContactsEntity"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.RawContactsEntity.html" target="_top"><code>ContactsContract.RawContactsEntity</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.Settings"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.Settings.html" target="_top"><code>ContactsContract.Settings</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.SettingsColumns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.SettingsColumns.html" target="_top"><code><I>ContactsContract.SettingsColumns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.StatusColumns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.StatusColumns.html" target="_top"><code><I>ContactsContract.StatusColumns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.StatusUpdates"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.StatusUpdates.html" target="_top"><code>ContactsContract.StatusUpdates</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.SyncColumns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.SyncColumns.html" target="_top"><code><I>ContactsContract.SyncColumns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ContactsContract.SyncState"></A>
+ <nobr><A HREF="../../../../reference/android/provider/ContactsContract.SyncState.html" target="_top"><code>ContactsContract.SyncState</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="MediaStore.Video.Thumbnails"></A>
+ <nobr><A HREF="../../../../reference/android/provider/MediaStore.Video.Thumbnails.html" target="_top"><code>MediaStore.Video.Thumbnails</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SyncStateContract"></A>
+ <nobr><A HREF="../../../../reference/android/provider/SyncStateContract.html" target="_top"><code>SyncStateContract</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SyncStateContract.Columns"></A>
+ <nobr><A HREF="../../../../reference/android/provider/SyncStateContract.Columns.html" target="_top"><code><I>SyncStateContract.Columns</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SyncStateContract.Constants"></A>
+ <nobr><A HREF="../../../../reference/android/provider/SyncStateContract.Constants.html" target="_top"><code>SyncStateContract.Constants</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SyncStateContract.Helpers"></A>
+ <nobr><A HREF="../../../../reference/android/provider/SyncStateContract.Helpers.html" target="_top"><code>SyncStateContract.Helpers</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes and Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes and Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts"></A>
+ <nobr><A HREF="android.provider.Contacts.html">Contacts</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.ContactMethods"></A>
+ <nobr><A HREF="android.provider.Contacts.ContactMethods.html">Contacts.ContactMethods</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.ContactMethodsColumns"></A>
+ <nobr><A HREF="android.provider.Contacts.ContactMethodsColumns.html"><I>Contacts.ContactMethodsColumns</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.Extensions"></A>
+ <nobr><A HREF="android.provider.Contacts.Extensions.html">Contacts.Extensions</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.ExtensionsColumns"></A>
+ <nobr><A HREF="android.provider.Contacts.ExtensionsColumns.html"><I>Contacts.ExtensionsColumns</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.GroupMembership"></A>
+ <nobr><A HREF="android.provider.Contacts.GroupMembership.html">Contacts.GroupMembership</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.Groups"></A>
+ <nobr><A HREF="android.provider.Contacts.Groups.html">Contacts.Groups</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.GroupsColumns"></A>
+ <nobr><A HREF="android.provider.Contacts.GroupsColumns.html"><I>Contacts.GroupsColumns</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.Intents"></A>
+ <nobr><A HREF="android.provider.Contacts.Intents.html">Contacts.Intents</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.Intents.Insert"></A>
+ <nobr><A HREF="android.provider.Contacts.Intents.Insert.html">Contacts.Intents.Insert</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.Intents.UI"></A>
+ <nobr><A HREF="android.provider.Contacts.Intents.UI.html">Contacts.Intents.UI</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.OrganizationColumns"></A>
+ <nobr><A HREF="android.provider.Contacts.OrganizationColumns.html"><I>Contacts.OrganizationColumns</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.Organizations"></A>
+ <nobr><A HREF="android.provider.Contacts.Organizations.html">Contacts.Organizations</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.People"></A>
+ <nobr><A HREF="android.provider.Contacts.People.html">Contacts.People</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.People.ContactMethods"></A>
+ <nobr><A HREF="android.provider.Contacts.People.ContactMethods.html">Contacts.People.ContactMethods</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.People.Extensions"></A>
+ <nobr><A HREF="android.provider.Contacts.People.Extensions.html">Contacts.People.Extensions</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.People.Phones"></A>
+ <nobr><A HREF="android.provider.Contacts.People.Phones.html">Contacts.People.Phones</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.PeopleColumns"></A>
+ <nobr><A HREF="android.provider.Contacts.PeopleColumns.html"><I>Contacts.PeopleColumns</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.Phones"></A>
+ <nobr><A HREF="android.provider.Contacts.Phones.html">Contacts.Phones</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.PhonesColumns"></A>
+ <nobr><A HREF="android.provider.Contacts.PhonesColumns.html"><I>Contacts.PhonesColumns</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.Photos"></A>
+ <nobr><A HREF="android.provider.Contacts.Photos.html">Contacts.Photos</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.PhotosColumns"></A>
+ <nobr><A HREF="android.provider.Contacts.PhotosColumns.html"><I>Contacts.PhotosColumns</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.PresenceColumns"></A>
+ <nobr><A HREF="android.provider.Contacts.PresenceColumns.html"><I>Contacts.PresenceColumns</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.Settings"></A>
+ <nobr><A HREF="android.provider.Contacts.Settings.html">Contacts.Settings</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Contacts.SettingsColumns"></A>
+ <nobr><A HREF="android.provider.Contacts.SettingsColumns.html"><I>Contacts.SettingsColumns</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="MediaStore.Images.Thumbnails"></A>
+ <nobr><A HREF="android.provider.MediaStore.Images.Thumbnails.html">MediaStore.Images.Thumbnails</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Settings"></A>
+ <nobr><A HREF="android.provider.Settings.html">Settings</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Settings.System"></A>
+ <nobr><A HREF="android.provider.Settings.System.html">Settings.System</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.telephony.html b/docs/html/sdk/api_diff/5/changes/pkg_android.telephony.html
new file mode 100644
index 0000000..9b32c82
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.telephony.html
@@ -0,0 +1,140 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.telephony
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/telephony/package-summary.html" target="_top"><font size="+1"><code>android.telephony</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="NeighboringCellInfo"></A>
+ <nobr><A HREF="android.telephony.NeighboringCellInfo.html">NeighboringCellInfo</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="PhoneNumberUtils"></A>
+ <nobr><A HREF="android.telephony.PhoneNumberUtils.html">PhoneNumberUtils</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="PhoneStateListener"></A>
+ <nobr><A HREF="android.telephony.PhoneStateListener.html">PhoneStateListener</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="TelephonyManager"></A>
+ <nobr><A HREF="android.telephony.TelephonyManager.html">TelephonyManager</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.test.html b/docs/html/sdk/api_diff/5/changes/pkg_android.test.html
new file mode 100644
index 0000000..a5f6543
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.test.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.test
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/test/package-summary.html" target="_top"><font size="+1"><code>android.test</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="AndroidTestRunner"></A>
+ <nobr><A HREF="android.test.AndroidTestRunner.html">AndroidTestRunner</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="InstrumentationTestCase"></A>
+ <nobr><A HREF="android.test.InstrumentationTestCase.html">InstrumentationTestCase</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.test.mock.html b/docs/html/sdk/api_diff/5/changes/pkg_android.test.mock.html
new file mode 100644
index 0000000..52d1348
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.test.mock.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.test.mock
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/test/mock/package-summary.html" target="_top"><font size="+1"><code>android.test.mock</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="MockContext"></A>
+ <nobr><A HREF="android.test.mock.MockContext.html">MockContext</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="MockPackageManager"></A>
+ <nobr><A HREF="android.test.mock.MockPackageManager.html">MockPackageManager</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.text.format.html b/docs/html/sdk/api_diff/5/changes/pkg_android.text.format.html
new file mode 100644
index 0000000..ffcff5b
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.text.format.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.text.format
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/text/format/package-summary.html" target="_top"><font size="+1"><code>android.text.format</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="DateUtils"></A>
+ <nobr><A HREF="android.text.format.DateUtils.html">DateUtils</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Formatter"></A>
+ <nobr><A HREF="android.text.format.Formatter.html">Formatter</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.text.html b/docs/html/sdk/api_diff/5/changes/pkg_android.text.html
new file mode 100644
index 0000000..153d208
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.text.html
@@ -0,0 +1,126 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.text
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/text/package-summary.html" target="_top"><font size="+1"><code>android.text</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes and Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes and Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="InputType"></A>
+ <nobr><A HREF="android.text.InputType.html"><I>InputType</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="TextPaint"></A>
+ <nobr><A HREF="android.text.TextPaint.html">TextPaint</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.text.style.html b/docs/html/sdk/api_diff/5/changes/pkg_android.text.style.html
new file mode 100644
index 0000000..9a37f7d
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.text.style.html
@@ -0,0 +1,141 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.text.style
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/text/style/package-summary.html" target="_top"><font size="+1"><code>android.text.style</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="LineHeightSpan.WithDensity"></A>
+ <nobr><A HREF="../../../../reference/android/text/style/LineHeightSpan.WithDensity.html" target="_top"><code><I>LineHeightSpan.WithDensity</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="AbsoluteSizeSpan"></A>
+ <nobr><A HREF="android.text.style.AbsoluteSizeSpan.html">AbsoluteSizeSpan</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ImageSpan"></A>
+ <nobr><A HREF="android.text.style.ImageSpan.html">ImageSpan</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.util.html b/docs/html/sdk/api_diff/5/changes/pkg_android.util.html
new file mode 100644
index 0000000..6cbbf6e
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.util.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.util
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/util/package-summary.html" target="_top"><font size="+1"><code>android.util</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Pair"></A>
+ <nobr><A HREF="../../../../reference/android/util/Pair.html" target="_top"><code>Pair</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.view.animation.html b/docs/html/sdk/api_diff/5/changes/pkg_android.view.animation.html
new file mode 100644
index 0000000..7922dba
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.view.animation.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view.animation
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/view/animation/package-summary.html" target="_top"><font size="+1"><code>android.view.animation</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Animation"></A>
+ <nobr><A HREF="android.view.animation.Animation.html">Animation</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.view.html b/docs/html/sdk/api_diff/5/changes/pkg_android.view.html
new file mode 100644
index 0000000..087ec16
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.view.html
@@ -0,0 +1,204 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.view
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/view/package-summary.html" target="_top"><font size="+1"><code>android.view</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="KeyEvent.DispatcherState"></A>
+ <nobr><A HREF="../../../../reference/android/view/KeyEvent.DispatcherState.html" target="_top"><code>KeyEvent.DispatcherState</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes and Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes and Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="HapticFeedbackConstants"></A>
+ <nobr><A HREF="android.view.HapticFeedbackConstants.html">HapticFeedbackConstants</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="KeyEvent"></A>
+ <nobr><A HREF="android.view.KeyEvent.html">KeyEvent</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="KeyEvent.Callback"></A>
+ <nobr><A HREF="android.view.KeyEvent.Callback.html"><I>KeyEvent.Callback</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="MotionEvent"></A>
+ <nobr><A HREF="android.view.MotionEvent.html">MotionEvent</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Surface"></A>
+ <nobr><A HREF="android.view.Surface.html">Surface</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SurfaceHolder"></A>
+ <nobr><A HREF="android.view.SurfaceHolder.html"><I>SurfaceHolder</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SurfaceView"></A>
+ <nobr><A HREF="android.view.SurfaceView.html">SurfaceView</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="View"></A>
+ <nobr><A HREF="android.view.View.html">View</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="ViewConfiguration"></A>
+ <nobr><A HREF="android.view.ViewConfiguration.html">ViewConfiguration</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Window.Callback"></A>
+ <nobr><A HREF="android.view.Window.Callback.html"><I>Window.Callback</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="WindowManager.LayoutParams"></A>
+ <nobr><A HREF="android.view.WindowManager.LayoutParams.html">WindowManager.LayoutParams</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.webkit.html b/docs/html/sdk/api_diff/5/changes/pkg_android.webkit.html
new file mode 100644
index 0000000..0044a96
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.webkit.html
@@ -0,0 +1,225 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.webkit
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/webkit/package-summary.html" target="_top"><font size="+1"><code>android.webkit</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Classes and Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Classes and Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="GeolocationPermissions"></A>
+ <nobr><A HREF="../../../../reference/android/webkit/GeolocationPermissions.html" target="_top"><code>GeolocationPermissions</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="GeolocationPermissions.Callback"></A>
+ <nobr><A HREF="../../../../reference/android/webkit/GeolocationPermissions.Callback.html" target="_top"><code><I>GeolocationPermissions.<br>Callback</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="PluginStub"></A>
+ <nobr><A HREF="../../../../reference/android/webkit/PluginStub.html" target="_top"><code><I>PluginStub</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="WebStorage"></A>
+ <nobr><A HREF="../../../../reference/android/webkit/WebStorage.html" target="_top"><code>WebStorage</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="WebStorage.QuotaUpdater"></A>
+ <nobr><A HREF="../../../../reference/android/webkit/WebStorage.QuotaUpdater.html" target="_top"><code><I>WebStorage.QuotaUpdater</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes and Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes and Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="CallbackProxy"></A>
+ <nobr><A HREF="android.webkit.CallbackProxy.html">CallbackProxy</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Plugin"></A>
+ <nobr><A HREF="android.webkit.Plugin.html">Plugin</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="PluginData"></A>
+ <nobr><A HREF="android.webkit.PluginData.html">PluginData</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="PluginList"></A>
+ <nobr><A HREF="android.webkit.PluginList.html">PluginList</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="UrlInterceptHandler"></A>
+ <nobr><A HREF="android.webkit.UrlInterceptHandler.html"><I>UrlInterceptHandler</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="UrlInterceptRegistry"></A>
+ <nobr><A HREF="android.webkit.UrlInterceptRegistry.html">UrlInterceptRegistry</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="WebChromeClient"></A>
+ <nobr><A HREF="android.webkit.WebChromeClient.html">WebChromeClient</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="WebSettings"></A>
+ <nobr><A HREF="android.webkit.WebSettings.html">WebSettings</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="WebView"></A>
+ <nobr><A HREF="android.webkit.WebView.html">WebView</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="WebViewClient"></A>
+ <nobr><A HREF="android.webkit.WebViewClient.html">WebViewClient</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_android.widget.html b/docs/html/sdk/api_diff/5/changes/pkg_android.widget.html
new file mode 100644
index 0000000..33a47c6
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_android.widget.html
@@ -0,0 +1,162 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+android.widget
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/android/widget/package-summary.html" target="_top"><font size="+1"><code>android.widget</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Classes and Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Classes and Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="QuickContactBadge"></A>
+ <nobr><A HREF="../../../../reference/android/widget/QuickContactBadge.html" target="_top"><code>QuickContactBadge</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SimpleCursorTreeAdapter.ViewBinder"></A>
+ <nobr><A HREF="../../../../reference/android/widget/SimpleCursorTreeAdapter.ViewBinder.html" target="_top"><code><I>SimpleCursorTreeAdapter.<br>ViewBinder</I></code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes and Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes and Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="AutoCompleteTextView"></A>
+ <nobr><A HREF="android.widget.AutoCompleteTextView.html">AutoCompleteTextView</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="MediaController.MediaPlayerControl"></A>
+ <nobr><A HREF="android.widget.MediaController.MediaPlayerControl.html"><I>MediaController.MediaPlayerControl</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="SimpleCursorTreeAdapter"></A>
+ <nobr><A HREF="android.widget.SimpleCursorTreeAdapter.html">SimpleCursorTreeAdapter</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="VideoView"></A>
+ <nobr><A HREF="android.widget.VideoView.html">VideoView</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_dalvik.system.html b/docs/html/sdk/api_diff/5/changes/pkg_dalvik.system.html
new file mode 100644
index 0000000..5fd2211
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_dalvik.system.html
@@ -0,0 +1,175 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+dalvik.system
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/dalvik/system/package-summary.html" target="_top"><font size="+1"><code>dalvik.system</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="AllocationLimitError"></A>
+ <nobr><A HREF="dalvik.system.AllocationLimitError.html">AllocationLimitError</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="PotentialDeadlockError"></A>
+ <nobr><A HREF="dalvik.system.PotentialDeadlockError.html">PotentialDeadlockError</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="StaleDexCacheError"></A>
+ <nobr><A HREF="dalvik.system.StaleDexCacheError.html">StaleDexCacheError</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="TemporaryDirectory"></A>
+ <nobr><A HREF="dalvik.system.TemporaryDirectory.html">TemporaryDirectory</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="TouchDex"></A>
+ <nobr><A HREF="dalvik.system.TouchDex.html">TouchDex</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="VMDebug"></A>
+ <nobr><A HREF="dalvik.system.VMDebug.html">VMDebug</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="VMRuntime"></A>
+ <nobr><A HREF="dalvik.system.VMRuntime.html">VMRuntime</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="VMStack"></A>
+ <nobr><A HREF="dalvik.system.VMStack.html">VMStack</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Zygote"></A>
+ <nobr><A HREF="dalvik.system.Zygote.html">Zygote</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_java.lang.html b/docs/html/sdk/api_diff/5/changes/pkg_java.lang.html
new file mode 100644
index 0000000..35b3da5
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_java.lang.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+java.lang
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/java/lang/package-summary.html" target="_top"><font size="+1"><code>java.lang</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="String"></A>
+ <nobr><A HREF="java.lang.String.html">String</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_java.net.html b/docs/html/sdk/api_diff/5/changes/pkg_java.net.html
new file mode 100644
index 0000000..e98015a
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_java.net.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+java.net
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/java/net/package-summary.html" target="_top"><font size="+1"><code>java.net</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Socket"></A>
+ <nobr><A HREF="java.net.Socket.html">Socket</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_java.util.concurrent.html b/docs/html/sdk/api_diff/5/changes/pkg_java.util.concurrent.html
new file mode 100644
index 0000000..f198541
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_java.util.concurrent.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+java.util.concurrent
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/java/util/concurrent/package-summary.html" target="_top"><font size="+1"><code>java.util.concurrent</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Interfaces" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Interfaces</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="BlockingQueue"></A>
+ <nobr><A HREF="java.util.concurrent.BlockingQueue.html"><I>BlockingQueue</I></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_java.util.concurrent.locks.html b/docs/html/sdk/api_diff/5/changes/pkg_java.util.concurrent.locks.html
new file mode 100644
index 0000000..a897a9c
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_java.util.concurrent.locks.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+java.util.concurrent.locks
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/java/util/concurrent/locks/package-summary.html" target="_top"><font size="+1"><code>java.util.concurrent.locks</code></font></A>
+</H2>
+<p>
+<a NAME="Added"></a>
+<TABLE summary="Added Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Added Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="AbstractOwnableSynchronizer"></A>
+ <nobr><A HREF="../../../../reference/java/util/concurrent/locks/AbstractOwnableSynchronizer.html" target="_top"><code>AbstractOwnableSynchronizer</code></A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/changes/pkg_java.util.html b/docs/html/sdk/api_diff/5/changes/pkg_java.util.html
new file mode 100644
index 0000000..be89b5d
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/changes/pkg_java.util.html
@@ -0,0 +1,119 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<HTML style="overflow:auto;">
+<HEAD>
+<meta name="generator" content="JDiff v1.1.0">
+<!-- Generated by the JDiff Javadoc doclet -->
+<!-- (http://www.jdiff.org) -->
+<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
+<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
+<TITLE>
+java.util
+</TITLE>
+<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
+<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
+<noscript>
+<style type="text/css">
+body{overflow:auto;}
+#body-content{position:relative; top:0;}
+#doc-content{overflow:visible;border-left:3px solid #666;}
+#side-nav{padding:0;}
+#side-nav .toggle-list ul {display:block;}
+#resize-packages-nav{border-bottom:3px solid #666;}
+</style>
+</noscript>
+<style type="text/css">
+</style>
+</HEAD>
+<BODY>
+<!-- Start of nav bar -->
+<a name="top"></a>
+<div id="header" style="margin-bottom:0;padding-bottom:0;">
+<div id="headerLeft">
+<a href="../../../../index.html" tabindex="-1" target="_top"><img src="../../../../assets/images/bg_logo.png" alt="Android Developers" /></a>
+</div>
+ <div id="headerRight">
+ <div id="headerLinks">
+<!-- <img src="/assets/images/icon_world.jpg" alt="" /> -->
+<span class="text">
+<!-- <a href="#">English</a> | -->
+<nobr><a href="http://developer.android.com" target="_top">Android Developers</a> | <a href="http://www.android.com" target="_top">Android.com</a></nobr>
+</span>
+</div>
+ <div class="and-diff-id" style="margin-top:6px;margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td colspan="2" class="diffspechead">API Diff Specification</td>
+ </tr>
+ <tr>
+ <td class="diffspec" style="padding-top:.25em">To Level:</td>
+ <td class="diffvaluenew" style="padding-top:.25em">5</td>
+ </tr>
+ <tr>
+ <td class="diffspec">From Level:</td>
+ <td class="diffvalueold">4</td>
+ </tr>
+ <tr>
+ <td class="diffspec">Generated</td>
+ <td class="diffvalue">2009.10.21 21:05</td>
+ </tr>
+ </table>
+ </div><!-- End and-diff-id -->
+ <div class="and-diff-id" style="margin-right:8px;">
+ <table class="diffspectable">
+ <tr>
+ <td class="diffspec" colspan="2"><a href="jdiff_statistics.html">Statistics</a>
+ </tr>
+ </table>
+ </div> <!-- End and-diff-id -->
+ </div> <!-- End headerRight -->
+ </div> <!-- End header -->
+<div id="body-content" xstyle="padding:12px;padding-right:18px;">
+<div id="doc-content" style="position:relative;">
+<div id="mainBodyFluid">
+<H2>
+Package <A HREF="../../../../reference/java/util/package-summary.html" target="_top"><font size="+1"><code>java.util</code></font></A>
+</H2>
+<p>
+<a NAME="Changed"></a>
+<TABLE summary="Changed Classes" WIDTH="100%">
+<TR>
+ <TH VALIGN="TOP" COLSPAN=2>Changed Classes</FONT></TD>
+</TH>
+<TR BGCOLOR="#FFFFFF" CLASS="TableRowColor">
+ <TD VALIGN="TOP" WIDTH="25%">
+ <A NAME="Date"></A>
+ <nobr><A HREF="java.util.Date.html">Date</A></nobr>
+ </TD>
+ <TD> </TD>
+</TR>
+</TABLE>
+
+ </div>
+ <div id="footer">
+ <div id="copyright">
+ Except as noted, this content is licensed under
+ <a href="http://creativecommons.org/licenses/by/2.5/"> Creative Commons Attribution 2.5</a>.
+ For details and restrictions, see the <a href="/license.html">Content License</a>.
+ </div>
+ <div id="footerlinks">
+ <p>
+ <a href="http://www.android.com/terms.html">Site Terms of Service</a> -
+ <a href="http://www.android.com/privacy.html">Privacy Policy</a> -
+ <a href="http://www.android.com/branding.html">Brand Guidelines</a>
+ </p>
+ </div>
+ </div> <!-- end footer -->
+ </div><!-- end doc-content -->
+ </div> <!-- end body-content -->
+<script src="http://www.google-analytics.com/ga.js" type="text/javascript">
+</script>
+<script type="text/javascript">
+ try {
+ var pageTracker = _gat._getTracker("UA-5831155-1");
+ pageTracker._setAllowAnchor(true);
+ pageTracker._initData();
+ pageTracker._trackPageview();
+ } catch(e) {}
+</script>
+</BODY>
+</HTML>
diff --git a/docs/html/sdk/api_diff/5/missingSinces.txt b/docs/html/sdk/api_diff/5/missingSinces.txt
new file mode 100644
index 0000000..26b6ea7
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/missingSinces.txt
@@ -0,0 +1,531 @@
+NO DOC BLOCK: java.util.concurrent.locks.AbstractOwnableSynchronizer Class
+NO DOC BLOCK: android.content.AbstractThreadedSyncAdapter Class
+NO DOC BLOCK: android.provider.ContactsContract Class
+NO DOC BLOCK: android.provider.ContactsContract.AggregationExceptions Class
+NO DOC BLOCK: android.provider.ContactsContract.BaseSyncColumns Interface
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds Class
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.BaseTypes Interface
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.CommonColumns Interface
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Email Class
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Event Class
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.GroupMembership Class
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Im Class
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Nickname Class
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Note Class
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Organization Class
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Phone Class
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Photo Class
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Relation Class
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredName Class
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.StructuredPostal Class
+NO DOC BLOCK: android.provider.ContactsContract.CommonDataKinds.Website Class
+NO DOC BLOCK: android.provider.ContactsContract.ContactOptionsColumns Interface
+NO DOC BLOCK: android.provider.ContactsContract.Contacts Class
+NO DOC BLOCK: android.provider.ContactsContract.Contacts.AggregationSuggestions Class
+NO DOC BLOCK: android.provider.ContactsContract.Contacts.Data Class
+NO DOC BLOCK: android.provider.ContactsContract.Contacts.Photo Class
+NO DOC BLOCK: android.provider.ContactsContract.ContactsColumns Interface
+NO DOC BLOCK: android.provider.ContactsContract.ContactStatusColumns Interface
+NO DOC BLOCK: android.provider.ContactsContract.Data Class
+NO DOC BLOCK: android.provider.ContactsContract.DataColumns Interface
+NO DOC BLOCK: android.provider.ContactsContract.DataColumnsWithJoins Interface
+NO DOC BLOCK: android.provider.ContactsContract.Groups Class
+NO DOC BLOCK: android.provider.ContactsContract.GroupsColumns Interface
+NO DOC BLOCK: android.provider.ContactsContract.Intents Class
+NO DOC BLOCK: android.provider.ContactsContract.Intents.Insert Class
+NO DOC BLOCK: android.provider.ContactsContract.PhoneLookup Class
+NO DOC BLOCK: android.provider.ContactsContract.PhoneLookupColumns Interface
+NO DOC BLOCK: android.provider.ContactsContract.Presence Class
+NO DOC BLOCK: android.provider.ContactsContract.PresenceColumns Interface
+NO DOC BLOCK: android.provider.ContactsContract.QuickContact Class
+NO DOC BLOCK: android.provider.ContactsContract.RawContacts Class
+NO DOC BLOCK: android.provider.ContactsContract.RawContacts.Data Class
+NO DOC BLOCK: android.provider.ContactsContract.RawContacts.Entity Class
+NO DOC BLOCK: android.provider.ContactsContract.RawContactsColumns Interface
+NO DOC BLOCK: android.provider.ContactsContract.RawContactsEntity Class
+NO DOC BLOCK: android.provider.ContactsContract.Settings Class
+NO DOC BLOCK: android.provider.ContactsContract.SettingsColumns Interface
+NO DOC BLOCK: android.provider.ContactsContract.StatusColumns Interface
+NO DOC BLOCK: android.provider.ContactsContract.StatusUpdates Class
+NO DOC BLOCK: android.provider.ContactsContract.SyncColumns Interface
+NO DOC BLOCK: android.provider.ContactsContract.SyncState Class
+NO DOC BLOCK: android.content.ContentProviderClient Class
+NO DOC BLOCK: android.content.ContentProviderOperation Class
+NO DOC BLOCK: android.content.ContentProviderOperation.Builder Class
+NO DOC BLOCK: android.content.ContentProviderResult Class
+NO DOC BLOCK: android.media.ExifInterface Class
+NO DOC BLOCK: android.content.pm.FeatureInfo Class
+NO DOC BLOCK: android.webkit.GeolocationPermissions Class
+NO DOC BLOCK: android.webkit.GeolocationPermissions.Callback Interface
+NO DOC BLOCK: android.opengl.GLSurfaceView.EGLContextFactory Interface
+NO DOC BLOCK: android.opengl.GLSurfaceView.EGLWindowSurfaceFactory Interface
+NO DOC BLOCK: android.location.GpsStatus.NmeaListener Interface
+NO DOC BLOCK: android.view.KeyEvent.DispatcherState Class
+NO DOC BLOCK: android.content.pm.LabeledIntent Class
+NO DOC BLOCK: android.text.style.LineHeightSpan.WithDensity Interface
+NO DOC BLOCK: android.provider.MediaStore.Video.Thumbnails Class
+NO DOC BLOCK: android.content.OperationApplicationException Class
+NO DOC BLOCK: android.util.Pair Class
+NO DOC BLOCK: android.os.ParcelUuid Class
+NO DOC BLOCK: android.webkit.PluginStub Interface
+NO DOC BLOCK: android.widget.QuickContactBadge Class
+NO DOC BLOCK: android.widget.SimpleCursorTreeAdapter.ViewBinder Interface
+NO DOC BLOCK: android.database.sqlite.SQLiteTransactionListener Interface
+NO DOC BLOCK: android.content.SyncAdapterType Class
+NO DOC BLOCK: android.content.SyncContext Class
+NO DOC BLOCK: android.content.SyncResult Class
+NO DOC BLOCK: android.provider.SyncStateContract Class
+NO DOC BLOCK: android.provider.SyncStateContract.Columns Interface
+NO DOC BLOCK: android.provider.SyncStateContract.Constants Class
+NO DOC BLOCK: android.provider.SyncStateContract.Helpers Class
+NO DOC BLOCK: android.content.SyncStats Class
+NO DOC BLOCK: android.content.SyncStatusObserver Interface
+NO DOC BLOCK: android.app.WallpaperManager Class
+NO DOC BLOCK: android.webkit.WebStorage Class
+NO DOC BLOCK: android.webkit.WebStorage.QuotaUpdater Interface
+NO DOC BLOCK: android.text.style.AbsoluteSizeSpan Constructor (int, boolean)
+NO DOC BLOCK: android.graphics.drawable.BitmapDrawable Constructor (android.content.res.Resources)
+NO DOC BLOCK: android.graphics.drawable.BitmapDrawable Constructor (android.content.res.Resources, java.lang.String)
+NO DOC BLOCK: android.graphics.drawable.BitmapDrawable Constructor (android.content.res.Resources, java.io.InputStream)
+NO DOC BLOCK: android.content.ContentResolver Method acquireContentProviderClient(android.net.Uri)
+NO DOC BLOCK: android.content.ContentResolver Method acquireContentProviderClient(java.lang.String)
+NO DOC BLOCK: android.location.LocationManager Method addNmeaListener(android.location.GpsStatus.NmeaListener)
+NO DOC BLOCK: android.content.ContentResolver Method addStatusChangeListener(int, android.content.SyncStatusObserver)
+NO DOC BLOCK: android.content.ContentProvider Method applyBatch(java.util.ArrayList<android.content.ContentProviderOperation>)
+NO DOC BLOCK: android.content.ContentResolver Method applyBatch(java.lang.String, java.util.ArrayList<android.content.ContentProviderOperation>)
+NO DOC BLOCK: android.view.View Method awakenScrollBars()
+NO DOC BLOCK: android.view.View Method awakenScrollBars(int)
+NO DOC BLOCK: android.view.View Method awakenScrollBars(int, boolean)
+NO DOC BLOCK: android.database.sqlite.SQLiteDatabase Method beginTransactionWithListener(android.database.sqlite.SQLiteTransactionListener)
+NO DOC BLOCK: android.app.NotificationManager Method cancel(java.lang.String, int)
+NO DOC BLOCK: android.hardware.Camera Method cancelAutoFocus()
+NO DOC BLOCK: android.content.ContentResolver Method cancelSync(android.accounts.Account, java.lang.String)
+NO DOC BLOCK: android.provider.MediaStore.Images.Thumbnails Method cancelThumbnailRequest(android.content.ContentResolver, long)
+NO DOC BLOCK: android.widget.MediaController.MediaPlayerControl Method canPause()
+NO DOC BLOCK: android.widget.VideoView Method canPause()
+NO DOC BLOCK: android.widget.MediaController.MediaPlayerControl Method canSeekBackward()
+NO DOC BLOCK: android.widget.VideoView Method canSeekBackward()
+NO DOC BLOCK: android.widget.MediaController.MediaPlayerControl Method canSeekForward()
+NO DOC BLOCK: android.widget.VideoView Method canSeekForward()
+NO DOC BLOCK: android.view.KeyEvent Method changeTimeRepeat(android.view.KeyEvent, long, int, int)
+NO DOC BLOCK: android.content.pm.PackageManager Method checkSignatures(int, int)
+NO DOC BLOCK: android.test.mock.MockPackageManager Method checkSignatures(int, int)
+NO DOC BLOCK: android.telephony.PhoneNumberUtils Method compare(android.content.Context, java.lang.String, java.lang.String)
+NO DOC BLOCK: java.util.concurrent.BlockingQueue Method contains(java.lang.Object)
+NO DOC BLOCK: android.graphics.drawable.Drawable Method createFromResourceStream(android.content.res.Resources, android.util.TypedValue, java.io.InputStream, java.lang.String, android.graphics.BitmapFactory.Options)
+NO DOC BLOCK: android.os.Debug.MemoryInfo Method describeContents()
+NO DOC BLOCK: android.view.KeyEvent Method dispatch(android.view.KeyEvent.Callback, android.view.KeyEvent.DispatcherState, java.lang.Object)
+NO DOC BLOCK: android.content.pm.ServiceInfo Method dump(android.util.Printer, java.lang.String)
+NO DOC BLOCK: android.view.MotionEvent Method findPointerIndex(int)
+NO DOC BLOCK: android.text.format.DateUtils Method formatDateRange(android.content.Context, java.util.Formatter, long, long, int)
+NO DOC BLOCK: android.text.format.Formatter Method formatShortFileSize(android.content.Context, long)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getAntibanding()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getColorEffect()
+NO DOC BLOCK: android.webkit.WebSettings Method getDatabaseEnabled()
+NO DOC BLOCK: android.webkit.WebSettings Method getDatabasePath()
+NO DOC BLOCK: android.view.animation.Animation Method getDetachWallpaper()
+NO DOC BLOCK: android.text.style.AbsoluteSizeSpan Method getDip()
+NO DOC BLOCK: android.widget.AutoCompleteTextView Method getDropDownBackground()
+NO DOC BLOCK: android.widget.AutoCompleteTextView Method getDropDownHorizontalOffset()
+NO DOC BLOCK: android.widget.AutoCompleteTextView Method getDropDownVerticalOffset()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getFlashMode()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getFocusMode()
+NO DOC BLOCK: android.view.MotionEvent Method getHistoricalPressure(int, int)
+NO DOC BLOCK: android.view.MotionEvent Method getHistoricalSize(int, int)
+NO DOC BLOCK: android.view.MotionEvent Method getHistoricalX(int, int)
+NO DOC BLOCK: android.view.MotionEvent Method getHistoricalY(int, int)
+NO DOC BLOCK: android.content.pm.PackageManager Method getInstallerPackageName(java.lang.String)
+NO DOC BLOCK: android.test.mock.MockPackageManager Method getInstallerPackageName(java.lang.String)
+NO DOC BLOCK: android.content.ContentResolver Method getIsSyncable(android.accounts.Account, java.lang.String)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getJpegQuality()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getJpegThumbnailQuality()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getJpegThumbnailSize()
+NO DOC BLOCK: android.inputmethodservice.AbstractInputMethodService Method getKeyDispatcherState()
+NO DOC BLOCK: android.view.View Method getKeyDispatcherState()
+NO DOC BLOCK: android.telephony.NeighboringCellInfo Method getLac()
+NO DOC BLOCK: android.content.ContentResolver Method getMasterSyncAutomatically()
+NO DOC BLOCK: android.app.ActivityManager Method getMemoryClass()
+NO DOC BLOCK: android.telephony.NeighboringCellInfo Method getNetworkType()
+NO DOC BLOCK: android.media.AudioManager Method getParameters(java.lang.String)
+NO DOC BLOCK: android.view.MotionEvent Method getPointerCount()
+NO DOC BLOCK: android.view.MotionEvent Method getPointerId(int)
+NO DOC BLOCK: android.view.MotionEvent Method getPressure(int)
+NO DOC BLOCK: android.app.ActivityManager Method getProcessMemoryInfo(int[])
+NO DOC BLOCK: android.telephony.NeighboringCellInfo Method getPsc()
+NO DOC BLOCK: android.app.ActivityManager Method getRunningServiceControlPanel(android.content.ComponentName)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getSceneMode()
+NO DOC BLOCK: android.view.ViewConfiguration Method getScrollBarFadeDuration()
+NO DOC BLOCK: android.view.ViewConfiguration Method getScrollDefaultDelay()
+NO DOC BLOCK: android.view.MotionEvent Method getSize(int)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getSupportedAntibanding()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getSupportedColorEffects()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getSupportedFlashModes()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getSupportedFocusModes()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getSupportedPictureFormats()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getSupportedPictureSizes()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getSupportedPreviewFormats()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getSupportedPreviewFrameRates()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getSupportedPreviewSizes()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getSupportedSceneModes()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getSupportedWhiteBalance()
+NO DOC BLOCK: android.content.ContentResolver Method getSyncAdapterTypes()
+NO DOC BLOCK: android.content.ContentResolver Method getSyncAutomatically(android.accounts.Account, java.lang.String)
+NO DOC BLOCK: android.content.pm.PackageManager Method getSystemAvailableFeatures()
+NO DOC BLOCK: android.test.mock.MockPackageManager Method getSystemAvailableFeatures()
+NO DOC BLOCK: android.provider.MediaStore.Images.Thumbnails Method getThumbnail(android.content.ContentResolver, long, int, android.graphics.BitmapFactory.Options)
+NO DOC BLOCK: android.os.Debug.MemoryInfo Method getTotalPrivateDirty()
+NO DOC BLOCK: android.os.Debug.MemoryInfo Method getTotalPss()
+NO DOC BLOCK: android.os.Debug.MemoryInfo Method getTotalSharedDirty()
+NO DOC BLOCK: android.widget.SimpleCursorTreeAdapter Method getViewBinder()
+NO DOC BLOCK: android.hardware.Camera.Parameters Method getWhiteBalance()
+NO DOC BLOCK: android.view.MotionEvent Method getX(int)
+NO DOC BLOCK: android.view.MotionEvent Method getY(int)
+NO DOC BLOCK: android.telephony.TelephonyManager Method hasIccCard()
+NO DOC BLOCK: android.content.pm.PackageManager Method hasSystemFeature(java.lang.String)
+NO DOC BLOCK: android.test.mock.MockPackageManager Method hasSystemFeature(java.lang.String)
+NO DOC BLOCK: android.test.InstrumentationTestCase Method injectInstrumentation(android.app.Instrumentation)
+NO DOC BLOCK: android.view.KeyEvent Method isCanceled()
+NO DOC BLOCK: android.database.AbstractWindowedCursor Method isFloat(int)
+NO DOC BLOCK: android.database.CursorWindow Method isFloat(int, int)
+NO DOC BLOCK: android.content.BroadcastReceiver Method isInitialStickyBroadcast()
+NO DOC BLOCK: android.database.AbstractWindowedCursor Method isLong(int)
+NO DOC BLOCK: android.database.CursorWindow Method isLong(int, int)
+NO DOC BLOCK: android.view.KeyEvent Method isLongPress()
+NO DOC BLOCK: android.content.BroadcastReceiver Method isOrderedBroadcast()
+NO DOC BLOCK: android.view.View Method isScrollbarFadingEnabled()
+NO DOC BLOCK: android.database.AbstractWindowedCursor Method isString(int)
+NO DOC BLOCK: android.database.CursorWindow Method isString(int, int)
+NO DOC BLOCK: android.content.ContentResolver Method isSyncActive(android.accounts.Account, java.lang.String)
+NO DOC BLOCK: android.content.ContentResolver Method isSyncPending(android.accounts.Account, java.lang.String)
+NO DOC BLOCK: android.view.KeyEvent Method isTracking()
+NO DOC BLOCK: android.media.AudioManager Method isWiredHeadsetOn()
+NO DOC BLOCK: android.hardware.Camera Method lock()
+NO DOC BLOCK: android.graphics.drawable.Drawable.ConstantState Method newDrawable(android.content.res.Resources)
+NO DOC BLOCK: android.app.NotificationManager Method notify(java.lang.String, int, android.app.Notification)
+NO DOC BLOCK: android.view.MotionEvent Method obtain(long, long, int, int, float, float, float, float, int, float, float, int, int)
+NO DOC BLOCK: android.view.MotionEvent Method obtainNoHistory(android.view.MotionEvent)
+NO DOC BLOCK: android.app.Activity Method onAttachedToWindow()
+NO DOC BLOCK: android.app.Dialog Method onAttachedToWindow()
+NO DOC BLOCK: android.view.Window.Callback Method onAttachedToWindow()
+NO DOC BLOCK: android.app.Activity Method onBackPressed()
+NO DOC BLOCK: android.app.Dialog Method onBackPressed()
+NO DOC BLOCK: android.app.Activity Method onDetachedFromWindow()
+NO DOC BLOCK: android.app.Dialog Method onDetachedFromWindow()
+NO DOC BLOCK: android.view.Window.Callback Method onDetachedFromWindow()
+NO DOC BLOCK: android.webkit.CallbackProxy Method onExceededDatabaseQuota(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)
+NO DOC BLOCK: android.webkit.WebChromeClient Method onExceededDatabaseQuota(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)
+NO DOC BLOCK: android.webkit.WebChromeClient Method onGeolocationPermissionsHidePrompt()
+NO DOC BLOCK: android.webkit.WebChromeClient Method onGeolocationPermissionsShowPrompt(java.lang.String, android.webkit.GeolocationPermissions.Callback)
+NO DOC BLOCK: android.app.Activity Method onKeyLongPress(int, android.view.KeyEvent)
+NO DOC BLOCK: android.app.Dialog Method onKeyLongPress(int, android.view.KeyEvent)
+NO DOC BLOCK: android.inputmethodservice.InputMethodService Method onKeyLongPress(int, android.view.KeyEvent)
+NO DOC BLOCK: android.view.KeyEvent.Callback Method onKeyLongPress(int, android.view.KeyEvent)
+NO DOC BLOCK: android.view.View Method onKeyLongPress(int, android.view.KeyEvent)
+NO DOC BLOCK: android.app.LauncherActivity Method onQueryPackageManager(android.content.Intent)
+NO DOC BLOCK: android.app.LauncherActivity Method onSetContentView()
+NO DOC BLOCK: android.app.Service Method onStartCommand(android.content.Intent, int, int)
+NO DOC BLOCK: android.app.Activity Method overridePendingTransition(int, int)
+NO DOC BLOCK: android.webkit.WebView Method postUrl(java.lang.String, byte[])
+NO DOC BLOCK: android.os.HandlerThread Method quit()
+NO DOC BLOCK: android.database.DatabaseUtils Method readExceptionWithOperationApplicationExceptionFromParcel(android.os.Parcel)
+NO DOC BLOCK: android.os.Debug.MemoryInfo Method readFromParcel(android.os.Parcel)
+NO DOC BLOCK: java.util.concurrent.BlockingQueue Method remove(java.lang.Object)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method removeGpsData()
+NO DOC BLOCK: android.location.LocationManager Method removeNmeaListener(android.location.GpsStatus.NmeaListener)
+NO DOC BLOCK: android.content.ContentResolver Method removeStatusChangeListener(java.lang.Object)
+NO DOC BLOCK: android.content.ContentResolver Method requestSync(android.accounts.Account, java.lang.String, android.os.Bundle)
+NO DOC BLOCK: android.content.Context Method sendStickyOrderedBroadcast(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)
+NO DOC BLOCK: android.content.ContextWrapper Method sendStickyOrderedBroadcast(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)
+NO DOC BLOCK: android.test.mock.MockContext Method sendStickyOrderedBroadcast(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setAntibanding(java.lang.String)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setColorEffect(java.lang.String)
+NO DOC BLOCK: android.webkit.WebSettings Method setDatabaseEnabled(boolean)
+NO DOC BLOCK: android.webkit.WebSettings Method setDatabasePath(java.lang.String)
+NO DOC BLOCK: android.view.animation.Animation Method setDetachWallpaper(boolean)
+NO DOC BLOCK: android.widget.AutoCompleteTextView Method setDropDownBackgroundDrawable(android.graphics.drawable.Drawable)
+NO DOC BLOCK: android.widget.AutoCompleteTextView Method setDropDownBackgroundResource(int)
+NO DOC BLOCK: android.widget.AutoCompleteTextView Method setDropDownHorizontalOffset(int)
+NO DOC BLOCK: android.widget.AutoCompleteTextView Method setDropDownVerticalOffset(int)
+NO DOC BLOCK: android.opengl.GLSurfaceView Method setEGLContextFactory(android.opengl.GLSurfaceView.EGLContextFactory)
+NO DOC BLOCK: android.opengl.GLSurfaceView Method setEGLWindowSurfaceFactory(android.opengl.GLSurfaceView.EGLWindowSurfaceFactory)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setFlashMode(java.lang.String)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setFocusMode(java.lang.String)
+NO DOC BLOCK: android.webkit.WebSettings Method setGeolocationDatabasePath(java.lang.String)
+NO DOC BLOCK: android.webkit.WebSettings Method setGeolocationEnabled(boolean)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setGpsAltitude(double)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setGpsLatitude(double)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setGpsLongitude(double)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setGpsTimestamp(long)
+NO DOC BLOCK: android.test.AndroidTestRunner Method setInstrumentation(android.app.Instrumentation)
+NO DOC BLOCK: android.app.IntentService Method setIntentRedelivery(boolean)
+NO DOC BLOCK: android.content.ContentResolver Method setIsSyncable(android.accounts.Account, java.lang.String, int)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setJpegQuality(int)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setJpegThumbnailQuality(int)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setJpegThumbnailSize(int, int)
+NO DOC BLOCK: android.content.ContentResolver Method setMasterSyncAutomatically(boolean)
+NO DOC BLOCK: android.media.AudioManager Method setParameters(java.lang.String)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setRotation(int)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setSceneMode(java.lang.String)
+NO DOC BLOCK: android.view.View Method setScrollbarFadingEnabled(boolean)
+NO DOC BLOCK: android.content.ContentResolver Method setSyncAutomatically(android.accounts.Account, java.lang.String, boolean)
+NO DOC BLOCK: android.widget.SimpleCursorTreeAdapter Method setViewBinder(android.widget.SimpleCursorTreeAdapter.ViewBinder)
+NO DOC BLOCK: android.widget.SimpleCursorTreeAdapter Method setViewText(android.widget.TextView, java.lang.String)
+NO DOC BLOCK: android.hardware.Camera.Parameters Method setWhiteBalance(java.lang.String)
+NO DOC BLOCK: android.media.AudioManager Method setWiredHeadsetOn(boolean)
+NO DOC BLOCK: android.view.SurfaceView Method setZOrderMediaOverlay(boolean)
+NO DOC BLOCK: android.view.SurfaceView Method setZOrderOnTop(boolean)
+NO DOC BLOCK: android.app.Service Method startForeground(int, android.app.Notification)
+NO DOC BLOCK: android.content.Context Method startIntentSender(android.content.IntentSender, android.content.Intent, int, int, int)
+NO DOC BLOCK: android.content.ContextWrapper Method startIntentSender(android.content.IntentSender, android.content.Intent, int, int, int)
+NO DOC BLOCK: android.test.mock.MockContext Method startIntentSender(android.content.IntentSender, android.content.Intent, int, int, int)
+NO DOC BLOCK: android.app.Activity Method startIntentSenderForResult(android.content.IntentSender, int, android.content.Intent, int, int, int)
+NO DOC BLOCK: android.app.Activity Method startIntentSenderFromChild(android.app.Activity, android.content.IntentSender, int, android.content.Intent, int, int, int)
+NO DOC BLOCK: android.media.ToneGenerator Method startTone(int, int)
+NO DOC BLOCK: android.view.KeyEvent Method startTracking()
+NO DOC BLOCK: android.app.Service Method stopForeground(boolean)
+NO DOC BLOCK: android.hardware.Camera Method takePicture(android.hardware.Camera.ShutterCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback)
+NO DOC BLOCK: android.app.Activity Method triggerSearch(java.lang.String, android.os.Bundle)
+NO DOC BLOCK: android.app.SearchManager Method triggerSearch(java.lang.String, android.content.ComponentName, android.os.Bundle)
+NO DOC BLOCK: android.hardware.Camera Method unlock()
+NO DOC BLOCK: android.os.Debug.MemoryInfo Method writeToParcel(android.os.Parcel, int)
+NO DOC BLOCK: android.database.sqlite.SQLiteDatabase Method yieldIfContendedSafely(long)
+NO DOC BLOCK: android.provider.Contacts.SettingsColumns Field _SYNC_ACCOUNT_TYPE
+NO DOC BLOCK: android.Manifest.permission Field ACCOUNT_MANAGER
+NO DOC BLOCK: android.content.Context Field ACCOUNT_SERVICE
+NO DOC BLOCK: android.R.attr Field accountPreferences
+NO DOC BLOCK: android.R.attr Field accountType
+NO DOC BLOCK: android.provider.Settings Field ACTION_ACCESSIBILITY_SETTINGS
+NO DOC BLOCK: android.content.Intent Field ACTION_DOCK_EVENT
+NO DOC BLOCK: android.view.MotionEvent Field ACTION_MASK
+NO DOC BLOCK: android.view.MotionEvent Field ACTION_POINTER_1_DOWN
+NO DOC BLOCK: android.view.MotionEvent Field ACTION_POINTER_1_UP
+NO DOC BLOCK: android.view.MotionEvent Field ACTION_POINTER_2_DOWN
+NO DOC BLOCK: android.view.MotionEvent Field ACTION_POINTER_2_UP
+NO DOC BLOCK: android.view.MotionEvent Field ACTION_POINTER_3_DOWN
+NO DOC BLOCK: android.view.MotionEvent Field ACTION_POINTER_3_UP
+NO DOC BLOCK: android.view.MotionEvent Field ACTION_POINTER_DOWN
+NO DOC BLOCK: android.view.MotionEvent Field ACTION_POINTER_ID_MASK
+NO DOC BLOCK: android.view.MotionEvent Field ACTION_POINTER_ID_SHIFT
+NO DOC BLOCK: android.view.MotionEvent Field ACTION_POINTER_UP
+NO DOC BLOCK: android.provider.Settings Field ACTION_PRIVACY_SETTINGS
+NO DOC BLOCK: android.provider.Settings.System Field ALARM_ALERT
+NO DOC BLOCK: android.R.style Field Animation_InputMethod
+NO DOC BLOCK: android.hardware.Camera.Parameters Field ANTIBANDING_50HZ
+NO DOC BLOCK: android.hardware.Camera.Parameters Field ANTIBANDING_60HZ
+NO DOC BLOCK: android.hardware.Camera.Parameters Field ANTIBANDING_AUTO
+NO DOC BLOCK: android.hardware.Camera.Parameters Field ANTIBANDING_OFF
+NO DOC BLOCK: android.Manifest.permission Field AUTHENTICATE_ACCOUNTS
+NO DOC BLOCK: android.content.Intent Field CATEGORY_CAR_DOCK
+NO DOC BLOCK: android.content.Intent Field CATEGORY_DESK_DOCK
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_BACK
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_BACK_PROCESSED
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_DEFAULT
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_FRONT
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_FRONT_PROCESSED
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_LEFT
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_LEFT_PROCESSED
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_MONO
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_PRESSURE
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_RIGHT
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_RIGHT_PROCESSED
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_STEREO
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_VOICE_DNLINK
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_VOICE_UPLINK
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_X_AXIS
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_Y_AXIS
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_IN_Z_AXIS
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_INVALID
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_5POINT1
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_7POINT1
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_BACK_CENTER
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_BACK_LEFT
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_BACK_RIGHT
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_DEFAULT
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_FRONT_CENTER
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_FRONT_LEFT
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_FRONT_LEFT_OF_CENTER
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_FRONT_RIGHT
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_FRONT_RIGHT_OF_CENTER
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_LOW_FREQUENCY
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_MONO
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_QUAD
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_STEREO
+NO DOC BLOCK: android.media.AudioFormat Field CHANNEL_OUT_SURROUND
+NO DOC BLOCK: android.app.ActivityManager.RunningServiceInfo Field clientLabel
+NO DOC BLOCK: android.app.ActivityManager.RunningServiceInfo Field clientPackage
+NO DOC BLOCK: android.R.attr Field colorBackgroundCacheHint
+NO DOC BLOCK: android.R.attr Field contentAuthority
+NO DOC BLOCK: android.os.Debug.MemoryInfo Field CREATOR
+NO DOC BLOCK: android.telephony.TelephonyManager Field DATA_ACTIVITY_DORMANT
+NO DOC BLOCK: android.provider.Settings.System Field DEFAULT_ALARM_ALERT_URI
+NO DOC BLOCK: android.text.TextPaint Field density
+NO DOC BLOCK: android.R.attr Field detachWallpaper
+NO DOC BLOCK: android.R.attr Field detailColumn
+NO DOC BLOCK: android.R.attr Field detailSocialSummary
+NO DOC BLOCK: android.R.attr Field dropDownHorizontalOffset
+NO DOC BLOCK: android.R.attr Field dropDownVerticalOffset
+NO DOC BLOCK: android.os.Build.VERSION_CODES Field ECLAIR
+NO DOC BLOCK: android.hardware.Camera.Parameters Field EFFECT_AQUA
+NO DOC BLOCK: android.hardware.Camera.Parameters Field EFFECT_BLACKBOARD
+NO DOC BLOCK: android.hardware.Camera.Parameters Field EFFECT_MONO
+NO DOC BLOCK: android.hardware.Camera.Parameters Field EFFECT_NEGATIVE
+NO DOC BLOCK: android.hardware.Camera.Parameters Field EFFECT_NONE
+NO DOC BLOCK: android.hardware.Camera.Parameters Field EFFECT_POSTERIZE
+NO DOC BLOCK: android.hardware.Camera.Parameters Field EFFECT_SEPIA
+NO DOC BLOCK: android.hardware.Camera.Parameters Field EFFECT_SOLARIZE
+NO DOC BLOCK: android.hardware.Camera.Parameters Field EFFECT_WHITEBOARD
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_AUTHENTICATION
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_BAD_URL
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_CONNECT
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_FAILED_SSL_HANDSHAKE
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_FILE
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_FILE_NOT_FOUND
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_HOST_LOOKUP
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_IO
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_PROXY_AUTHENTICATION
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_REDIRECT_LOOP
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_TIMEOUT
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_TOO_MANY_REQUESTS
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_UNKNOWN
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_UNSUPPORTED_AUTH_SCHEME
+NO DOC BLOCK: android.webkit.WebViewClient Field ERROR_UNSUPPORTED_SCHEME
+NO DOC BLOCK: android.content.Intent Field EXTRA_CHANGED_COMPONENT_NAME
+NO DOC BLOCK: android.content.Intent Field EXTRA_DOCK_STATE
+NO DOC BLOCK: android.content.Intent Field EXTRA_DOCK_STATE_CAR
+NO DOC BLOCK: android.content.Intent Field EXTRA_DOCK_STATE_DESK
+NO DOC BLOCK: android.content.Intent Field EXTRA_DOCK_STATE_UNDOCKED
+NO DOC BLOCK: android.os.BatteryManager Field EXTRA_HEALTH
+NO DOC BLOCK: android.os.BatteryManager Field EXTRA_ICON_SMALL
+NO DOC BLOCK: android.content.Intent Field EXTRA_INITIAL_INTENTS
+NO DOC BLOCK: android.os.BatteryManager Field EXTRA_LEVEL
+NO DOC BLOCK: android.os.BatteryManager Field EXTRA_PLUGGED
+NO DOC BLOCK: android.os.BatteryManager Field EXTRA_PRESENT
+NO DOC BLOCK: android.content.Intent Field EXTRA_REMOTE_INTENT_TOKEN
+NO DOC BLOCK: android.os.BatteryManager Field EXTRA_SCALE
+NO DOC BLOCK: android.os.BatteryManager Field EXTRA_STATUS
+NO DOC BLOCK: android.os.BatteryManager Field EXTRA_TECHNOLOGY
+NO DOC BLOCK: android.os.BatteryManager Field EXTRA_TEMPERATURE
+NO DOC BLOCK: android.os.BatteryManager Field EXTRA_VOLTAGE
+NO DOC BLOCK: android.R.attr Field fadeScrollbars
+NO DOC BLOCK: android.R.attr Field finishOnCloseSystemDialogs
+NO DOC BLOCK: android.content.Intent Field FLAG_ACTIVITY_NO_ANIMATION
+NO DOC BLOCK: android.view.KeyEvent Field FLAG_CANCELED
+NO DOC BLOCK: android.view.KeyEvent Field FLAG_CANCELED_LONG_PRESS
+NO DOC BLOCK: android.view.WindowManager.LayoutParams Field FLAG_DISMISS_KEYGUARD
+NO DOC BLOCK: android.content.pm.ActivityInfo Field FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS
+NO DOC BLOCK: android.app.ActivityManager.RunningServiceInfo Field FLAG_FOREGROUND
+NO DOC BLOCK: android.app.Notification Field FLAG_FOREGROUND_SERVICE
+NO DOC BLOCK: android.view.KeyEvent Field FLAG_LONG_PRESS
+NO DOC BLOCK: android.app.ActivityManager.RunningServiceInfo Field FLAG_PERSISTENT_PROCESS
+NO DOC BLOCK: android.view.WindowManager.LayoutParams Field FLAG_SHOW_WALLPAPER
+NO DOC BLOCK: android.view.WindowManager.LayoutParams Field FLAG_SHOW_WHEN_LOCKED
+NO DOC BLOCK: android.app.ActivityManager.RunningServiceInfo Field FLAG_STARTED
+NO DOC BLOCK: android.app.ActivityManager.RunningServiceInfo Field FLAG_SYSTEM_PROCESS
+NO DOC BLOCK: android.view.KeyEvent Field FLAG_TRACKING
+NO DOC BLOCK: android.view.WindowManager.LayoutParams Field FLAG_TURN_SCREEN_ON
+NO DOC BLOCK: android.view.KeyEvent Field FLAG_VIRTUAL_HARD_KEY
+NO DOC BLOCK: android.app.ActivityManager.RunningServiceInfo Field flags
+NO DOC BLOCK: android.hardware.Camera.Parameters Field FLASH_MODE_AUTO
+NO DOC BLOCK: android.hardware.Camera.Parameters Field FLASH_MODE_OFF
+NO DOC BLOCK: android.hardware.Camera.Parameters Field FLASH_MODE_ON
+NO DOC BLOCK: android.hardware.Camera.Parameters Field FLASH_MODE_RED_EYE
+NO DOC BLOCK: android.hardware.Camera.Parameters Field FLASH_MODE_TORCH
+NO DOC BLOCK: android.hardware.Camera.Parameters Field FOCUS_MODE_AUTO
+NO DOC BLOCK: android.hardware.Camera.Parameters Field FOCUS_MODE_FIXED
+NO DOC BLOCK: android.hardware.Camera.Parameters Field FOCUS_MODE_INFINITY
+NO DOC BLOCK: android.hardware.Camera.Parameters Field FOCUS_MODE_MACRO
+NO DOC BLOCK: android.provider.Contacts.GroupMembership Field GROUP_SYNC_ACCOUNT_TYPE
+NO DOC BLOCK: android.app.ActivityManager.RunningAppProcessInfo Field importanceReasonCode
+NO DOC BLOCK: android.app.ActivityManager.RunningAppProcessInfo Field importanceReasonComponent
+NO DOC BLOCK: android.app.ActivityManager.RunningAppProcessInfo Field importanceReasonPid
+NO DOC BLOCK: android.R.attr Field killAfterRestore
+NO DOC BLOCK: android.Manifest.permission Field MANAGE_ACCOUNTS
+NO DOC BLOCK: android.media.MediaPlayer Field MEDIA_INFO_METADATA_UPDATE
+NO DOC BLOCK: android.content.Intent Field METADATA_DOCK_HOME
+NO DOC BLOCK: android.content.res.Configuration Field navigationHidden
+NO DOC BLOCK: android.content.res.Configuration Field NAVIGATIONHIDDEN_NO
+NO DOC BLOCK: android.content.res.Configuration Field NAVIGATIONHIDDEN_UNDEFINED
+NO DOC BLOCK: android.content.res.Configuration Field NAVIGATIONHIDDEN_YES
+NO DOC BLOCK: android.telephony.TelephonyManager Field NETWORK_TYPE_1xRTT
+NO DOC BLOCK: android.telephony.TelephonyManager Field NETWORK_TYPE_CDMA
+NO DOC BLOCK: android.telephony.TelephonyManager Field NETWORK_TYPE_EVDO_0
+NO DOC BLOCK: android.telephony.TelephonyManager Field NETWORK_TYPE_EVDO_A
+NO DOC BLOCK: android.telephony.TelephonyManager Field NETWORK_TYPE_HSDPA
+NO DOC BLOCK: android.telephony.TelephonyManager Field NETWORK_TYPE_HSPA
+NO DOC BLOCK: android.telephony.TelephonyManager Field NETWORK_TYPE_HSUPA
+NO DOC BLOCK: android.telephony.TelephonyManager Field PHONE_TYPE_CDMA
+NO DOC BLOCK: android.app.ActivityManager.RunningAppProcessInfo Field REASON_PROVIDER_IN_USE
+NO DOC BLOCK: android.app.ActivityManager.RunningAppProcessInfo Field REASON_SERVICE_IN_USE
+NO DOC BLOCK: android.app.ActivityManager.RunningAppProcessInfo Field REASON_UNKNOWN
+NO DOC BLOCK: android.content.pm.PackageInfo Field reqFeatures
+NO DOC BLOCK: android.R.attr Field required
+NO DOC BLOCK: android.content.pm.ResolveInfo Field resolvePackageName
+NO DOC BLOCK: android.R.attr Field restoreNeedsApplication
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_ACTION
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_AUTO
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_BEACH
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_CANDLELIGHT
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_FIREWORKS
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_LANDSCAPE
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_NIGHT
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_NIGHT_PORTRAIT
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_PARTY
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_PORTRAIT
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_SNOW
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_SPORTS
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_STEADYPHOTO
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_SUNSET
+NO DOC BLOCK: android.hardware.Camera.Parameters Field SCENE_MODE_THEATRE
+NO DOC BLOCK: android.R.drawable Field screen_background_dark_transparent
+NO DOC BLOCK: android.R.drawable Field screen_background_light_transparent
+NO DOC BLOCK: android.R.attr Field scrollbarDefaultDelayBeforeFade
+NO DOC BLOCK: android.R.attr Field scrollbarFadeDuration
+NO DOC BLOCK: android.R.attr Field smallIcon
+NO DOC BLOCK: android.app.Service Field START_CONTINUATION_MASK
+NO DOC BLOCK: android.app.Service Field START_FLAG_REDELIVERY
+NO DOC BLOCK: android.app.Service Field START_FLAG_RETRY
+NO DOC BLOCK: android.app.Service Field START_NOT_STICKY
+NO DOC BLOCK: android.app.Service Field START_REDELIVER_INTENT
+NO DOC BLOCK: android.app.Service Field START_STICKY
+NO DOC BLOCK: android.app.Service Field START_STICKY_COMPATIBILITY
+NO DOC BLOCK: android.R.drawable Field stat_notify_sdcard_prepare
+NO DOC BLOCK: android.media.AudioManager Field STREAM_DTMF
+NO DOC BLOCK: android.app.SearchManager Field SUGGEST_PARAMETER_LIMIT
+NO DOC BLOCK: android.R.attr Field summaryColumn
+NO DOC BLOCK: android.R.attr Field supportsUploading
+NO DOC BLOCK: android.content.ContentResolver Field SYNC_EXTRAS_INITIALIZE
+NO DOC BLOCK: android.content.ContentResolver Field SYNC_EXTRAS_MANUAL
+NO DOC BLOCK: android.R.attr Field textAppearanceSearchResultSubtitle
+NO DOC BLOCK: android.R.attr Field textAppearanceSearchResultTitle
+NO DOC BLOCK: android.R.style Field Theme_Light_WallpaperSettings
+NO DOC BLOCK: android.R.style Field Theme_Wallpaper
+NO DOC BLOCK: android.R.style Field Theme_Wallpaper_NoTitleBar
+NO DOC BLOCK: android.R.style Field Theme_Wallpaper_NoTitleBar_Fullscreen
+NO DOC BLOCK: android.R.style Field Theme_WallpaperSettings
+NO DOC BLOCK: android.provider.MediaStore.Images.Thumbnails Field THUMB_DATA
+NO DOC BLOCK: android.R.attr Field thumbnail
+NO DOC BLOCK: android.text.InputType Field TYPE_TEXT_FLAG_NO_SUGGESTIONS
+NO DOC BLOCK: android.view.WindowManager.LayoutParams Field TYPE_WALLPAPER
+NO DOC BLOCK: android.app.ActivityManager.RunningAppProcessInfo Field uid
+NO DOC BLOCK: android.app.ActivityManager.RunningServiceInfo Field uid
+NO DOC BLOCK: android.Manifest.permission Field USE_CREDENTIALS
+NO DOC BLOCK: android.R.attr Field userVisible
+NO DOC BLOCK: android.view.HapticFeedbackConstants Field VIRTUAL_KEY
+NO DOC BLOCK: android.R.attr Field wallpaperCloseEnterAnimation
+NO DOC BLOCK: android.R.attr Field wallpaperCloseExitAnimation
+NO DOC BLOCK: android.R.attr Field wallpaperIntraCloseEnterAnimation
+NO DOC BLOCK: android.R.attr Field wallpaperIntraCloseExitAnimation
+NO DOC BLOCK: android.R.attr Field wallpaperIntraOpenEnterAnimation
+NO DOC BLOCK: android.R.attr Field wallpaperIntraOpenExitAnimation
+NO DOC BLOCK: android.R.attr Field wallpaperOpenEnterAnimation
+NO DOC BLOCK: android.R.attr Field wallpaperOpenExitAnimation
+NO DOC BLOCK: android.hardware.Camera.Parameters Field WHITE_BALANCE_AUTO
+NO DOC BLOCK: android.hardware.Camera.Parameters Field WHITE_BALANCE_CLOUDY_DAYLIGHT
+NO DOC BLOCK: android.hardware.Camera.Parameters Field WHITE_BALANCE_DAYLIGHT
+NO DOC BLOCK: android.hardware.Camera.Parameters Field WHITE_BALANCE_FLUORESCENT
+NO DOC BLOCK: android.hardware.Camera.Parameters Field WHITE_BALANCE_INCANDESCENT
+NO DOC BLOCK: android.hardware.Camera.Parameters Field WHITE_BALANCE_SHADE
+NO DOC BLOCK: android.hardware.Camera.Parameters Field WHITE_BALANCE_TWILIGHT
+NO DOC BLOCK: android.hardware.Camera.Parameters Field WHITE_BALANCE_WARM_FLUORESCENT
+NO DOC BLOCK: android.R.attr Field windowShowWallpaper
+NO DOC BLOCK: android.graphics.PixelFormat Field YCbCr_422_I
diff --git a/docs/html/sdk/api_diff/5/stylesheet-jdiff.css b/docs/html/sdk/api_diff/5/stylesheet-jdiff.css
new file mode 100644
index 0000000..b3c1b9a
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/stylesheet-jdiff.css
@@ -0,0 +1,37 @@
+
+/* (http://www.jdiff.org) */
+
+div.and-diff-id {border: 1px solid #eee;position:relative;float:right;clear:both;padding:0px;}
+table.diffspectable {border:1px;padding:0px;margin:0px;}
+.diffspechead {background-color:#eee;}
+.diffspectable tr {border:0px;padding:0px;}
+.diffspectable td {background-color:eee;border:0px;font-size:90%;font-weight:normal;padding:0px;padding-left:1px;padding-right:1px;text-align:center;color:777;}
+td.diffvalueold {color:orange;background-color:white;border:0px;font-size:80%;font-style:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
+td.diffvaluenew {color:green;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
+td.diffvalue {color:444;background-color:white;border:0px;font-size:80%;font-weight:normal;text-align:left;padding:0px;padding-left:1px;padding-right:1px;line-height:.95em;}
+td.diffspec {background-color:white;border:0px;font-size:80%;font-weight:normal;padding:1px;color:444;text-align:right;padding-right:.5em;line-height:.95em;}
+tt {font-size:11pt;font-family:monospace;}
+.indexHeader {
+ font-size:96%;
+ line-height:.8em;}
+.jdiffIndex td {
+ font-size:96%;
+ xline-height:.8em;
+ padding:2px;
+ padding-left:1em;}
+.indexText {
+ font-size:100%;
+ padding-left:1em;}
+#indexTableCaption {
+ font-size:96%;
+ margin-top:.25em;
+ margin-bottom:0;
+ }
+.hiddenlink {
+ font-size:96%;
+ line-height:.8em;
+ text-decoration:none;}
+a {
+ text-decoration:none;}
+a:hover {
+ text-decoration:underline;}
diff --git a/docs/html/sdk/api_diff/5/user_comments_for_4_to_5.xml b/docs/html/sdk/api_diff/5/user_comments_for_4_to_5.xml
new file mode 100644
index 0000000..c962fc2
--- /dev/null
+++ b/docs/html/sdk/api_diff/5/user_comments_for_4_to_5.xml
@@ -0,0 +1,6025 @@
+<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
+<comments
+ xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
+ xsi:noNamespaceSchemaLocation='comments.xsd'
+ name="4_to_5"
+ jdversion="1.1.0">
+
+<!-- Use this file to enter an API change description. For example, when you remove a class,
+ you can enter a comment for that class that points developers to the replacement class.
+ You can also provide a change summary for modified API, to give an overview of the changes
+ why they were made, workarounds, etc. -->
+
+<!-- When the API diffs report is generated, the comments in this file get added to the tables of
+ removed, added, and modified packages, classes, methods, and fields. This file does not ship
+ with the final report. -->
+
+<!-- The id attribute in an identifier element identifies the change as noted in the report.
+ An id has the form package[.class[.[ctor|method|field].signature]], where [] indicates optional
+ text. A comment element can have multiple identifier elements, which will will cause the same
+ text to appear at each place in the report, but will be converted to separate comments when the
+ comments file is used. -->
+
+<!-- HTML tags in the text field will appear in the report. You also need to close p HTML elements,
+ used for paragraphs - see the top-level documentation. -->
+
+<!-- You can include standard javadoc links in your change descriptions. You can use the @first command
+ to cause jdiff to include the first line of the API documentation. You also need to close p HTML
+ elements, used for paragraphs - see the top-level documentation. -->
+
+<comment>
+ <identifier id="android"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.Manifest.permission"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.Manifest.permission.ACCOUNT_MANAGER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.Manifest.permission.AUTHENTICATE_ACCOUNTS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.Manifest.permission.MANAGE_ACCOUNTS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.Manifest.permission.USE_CREDENTIALS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.accountPreferences"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.accountType"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.colorBackgroundCacheHint"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.contentAuthority"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.detachWallpaper"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.detailColumn"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.detailSocialSummary"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.dropDownHorizontalOffset"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.dropDownVerticalOffset"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.fadeScrollbars"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.finishOnCloseSystemDialogs"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.killAfterRestore"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.required"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.restoreNeedsApplication"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.scrollbarDefaultDelayBeforeFade"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.scrollbarFadeDuration"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.smallIcon"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.summaryColumn"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.supportsUploading"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.textAppearanceSearchResultSubtitle"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.textAppearanceSearchResultTitle"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.thumbnail"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.userVisible"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.wallpaperCloseEnterAnimation"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.wallpaperCloseExitAnimation"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.wallpaperIntraCloseEnterAnimation"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.wallpaperIntraCloseExitAnimation"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.wallpaperIntraOpenEnterAnimation"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.wallpaperIntraOpenExitAnimation"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.wallpaperOpenEnterAnimation"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.wallpaperOpenExitAnimation"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.attr.windowShowWallpaper"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.drawable"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.drawable.screen_background_dark_transparent"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.drawable.screen_background_light_transparent"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.drawable.stat_notify_sdcard_prepare"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.style"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.style.Animation_InputMethod"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.style.Theme_Light_WallpaperSettings"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.style.Theme_Wallpaper"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.style.Theme_WallpaperSettings"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.style.Theme_Wallpaper_NoTitleBar"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.R.style.Theme_Wallpaper_NoTitleBar_Fullscreen"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.accounts"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Activity"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Activity.onAttachedToWindow_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Activity.onBackPressed_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Activity.onDetachedFromWindow_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Activity.onKeyLongPress_added(int, android.view.KeyEvent)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Activity.overridePendingTransition_added(int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Activity.startIntentSenderForResult_added(android.content.IntentSender, int, android.content.Intent, int, int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Activity.startIntentSenderFromChild_added(android.app.Activity, android.content.IntentSender, int, android.content.Intent, int, int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Activity.triggerSearch_added(java.lang.String, android.os.Bundle)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningAppProcessInfo"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningAppProcessInfo.REASON_PROVIDER_IN_USE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningAppProcessInfo.REASON_SERVICE_IN_USE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningAppProcessInfo.REASON_UNKNOWN"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningAppProcessInfo.importanceReasonCode"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningAppProcessInfo.importanceReasonComponent"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningAppProcessInfo.importanceReasonPid"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningAppProcessInfo.uid"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningServiceInfo"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningServiceInfo.FLAG_FOREGROUND"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningServiceInfo.FLAG_PERSISTENT_PROCESS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningServiceInfo.FLAG_STARTED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningServiceInfo.FLAG_SYSTEM_PROCESS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningServiceInfo.clientLabel"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningServiceInfo.clientPackage"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningServiceInfo.flags"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.RunningServiceInfo.uid"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.getMemoryClass_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.getProcessMemoryInfo_added(int[])"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.ActivityManager.getRunningServiceControlPanel_added(android.content.ComponentName)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Dialog"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Dialog.onAttachedToWindow_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Dialog.onBackPressed_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Dialog.onDetachedFromWindow_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Dialog.onKeyLongPress_added(int, android.view.KeyEvent)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.IntentService"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.IntentService.setIntentRedelivery_added(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.LauncherActivity"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.LauncherActivity.onQueryPackageManager_added(android.content.Intent)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.LauncherActivity.onSetContentView_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Notification"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Notification.FLAG_FOREGROUND_SERVICE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.NotificationManager"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.NotificationManager.cancel_added(java.lang.String, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.NotificationManager.notify_added(java.lang.String, int, android.app.Notification)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.SearchManager"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.SearchManager.SUGGEST_PARAMETER_LIMIT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.SearchManager.triggerSearch_added(java.lang.String, android.content.ComponentName, android.os.Bundle)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Service"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Service.START_CONTINUATION_MASK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Service.START_FLAG_REDELIVERY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Service.START_FLAG_RETRY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Service.START_NOT_STICKY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Service.START_REDELIVER_INTENT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Service.START_STICKY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Service.START_STICKY_COMPATIBILITY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Service.onStartCommand_added(android.content.Intent, int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Service.onStart_changed(android.content.Intent, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Service.setForeground_changed(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Service.startForeground_added(int, android.app.Notification)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.Service.stopForeground_added(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.app.WallpaperManager"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.bluetooth"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.AbstractThreadedSyncAdapter"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.BroadcastReceiver"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.BroadcastReceiver.isInitialStickyBroadcast_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.BroadcastReceiver.isOrderedBroadcast_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentProvider"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentProvider.applyBatch_added(java.util.ArrayList<android.content.ContentProviderOperation>)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentProviderClient"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentProviderOperation"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentProviderOperation.Builder"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentProviderResult"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.SYNC_EXTRAS_ACCOUNT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.SYNC_EXTRAS_FORCE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.SYNC_EXTRAS_INITIALIZE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.SYNC_EXTRAS_MANUAL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.acquireContentProviderClient_added(android.net.Uri)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.acquireContentProviderClient_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.addStatusChangeListener_added(int, android.content.SyncStatusObserver)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.applyBatch_added(java.lang.String, java.util.ArrayList<android.content.ContentProviderOperation>)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.cancelSync_added(android.accounts.Account, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.cancelSync_changed(android.net.Uri)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.getIsSyncable_added(android.accounts.Account, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.getMasterSyncAutomatically_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.getSyncAdapterTypes_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.getSyncAutomatically_added(android.accounts.Account, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.isSyncActive_added(android.accounts.Account, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.isSyncPending_added(android.accounts.Account, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.removeStatusChangeListener_added(java.lang.Object)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.requestSync_added(android.accounts.Account, java.lang.String, android.os.Bundle)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.setIsSyncable_added(android.accounts.Account, java.lang.String, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.setMasterSyncAutomatically_added(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.setSyncAutomatically_added(android.accounts.Account, java.lang.String, boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContentResolver.startSync_changed(android.net.Uri, android.os.Bundle)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Context"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Context.ACCOUNT_SERVICE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Context.clearWallpaper_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Context.getWallpaperDesiredMinimumHeight_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Context.getWallpaperDesiredMinimumWidth_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Context.getWallpaper_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Context.peekWallpaper_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Context.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Context.setWallpaper_changed(android.graphics.Bitmap)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Context.setWallpaper_changed(java.io.InputStream)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Context.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContextWrapper"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContextWrapper.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.ContextWrapper.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Intent"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Intent.ACTION_DOCK_EVENT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Intent.CATEGORY_CAR_DOCK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Intent.CATEGORY_DESK_DOCK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Intent.EXTRA_CHANGED_COMPONENT_NAME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Intent.EXTRA_DOCK_STATE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Intent.EXTRA_DOCK_STATE_CAR"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Intent.EXTRA_DOCK_STATE_DESK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Intent.EXTRA_DOCK_STATE_UNDOCKED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Intent.EXTRA_INITIAL_INTENTS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Intent.EXTRA_REMOTE_INTENT_TOKEN"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Intent.FLAG_ACTIVITY_NO_ANIMATION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.Intent.METADATA_DOCK_HOME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.OperationApplicationException"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.SyncAdapterType"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.SyncContext"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.SyncResult"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.SyncStats"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.SyncStatusObserver"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.ActivityInfo"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.ActivityInfo.FLAG_FINISH_ON_CLOSE_SYSTEM_DIALOGS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.FeatureInfo"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.LabeledIntent"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.PackageInfo"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.PackageInfo.reqFeatures"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.PackageManager"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.PackageManager.checkSignatures_added(int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.PackageManager.getInstallerPackageName_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.PackageManager.getSystemAvailableFeatures_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.PackageManager.hasSystemFeature_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.ProviderInfo"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.ProviderInfo.isSyncable"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.ResolveInfo"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.ResolveInfo.resolvePackageName"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.ServiceInfo"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.pm.ServiceInfo.dump_added(android.util.Printer, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.res"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.res.Configuration"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.res.Configuration.NAVIGATIONHIDDEN_NO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.res.Configuration.NAVIGATIONHIDDEN_UNDEFINED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.res.Configuration.NAVIGATIONHIDDEN_YES"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.content.res.Configuration.navigationHidden"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.AbstractWindowedCursor"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.AbstractWindowedCursor.isFloat_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.AbstractWindowedCursor.isLong_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.AbstractWindowedCursor.isString_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.CursorWindow"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.CursorWindow.isFloat_added(int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.CursorWindow.isLong_added(int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.CursorWindow.isString_added(int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.DatabaseUtils"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.DatabaseUtils.readExceptionWithOperationApplicationExceptionFromParcel_added(android.os.Parcel)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.sqlite"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.sqlite.SQLiteDatabase"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.sqlite.SQLiteDatabase.beginTransactionWithListener_added(android.database.sqlite.SQLiteTransactionListener)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.sqlite.SQLiteDatabase.yieldIfContendedSafely_added(long)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.database.sqlite.SQLiteTransactionListener"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.PixelFormat"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.PixelFormat.YCbCr_422_I"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.BitmapDrawable"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources, java.io.InputStream)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.BitmapDrawable.ctor_added(android.content.res.Resources, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.BitmapDrawable.ctor_changed(java.io.InputStream)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.BitmapDrawable.ctor_changed(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.BitmapDrawable.ctor_removed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.BitmapDrawable.ctor_removed(android.graphics.Bitmap)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.Drawable"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.Drawable.ConstantState"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.Drawable.ConstantState.newDrawable_added(android.content.res.Resources)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.Drawable.createFromResourceStream_added(android.content.res.Resources, android.util.TypedValue, java.io.InputStream, java.lang.String, android.graphics.BitmapFactory.Options)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.NinePatchDrawable"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.graphics.drawable.NinePatchDrawable.ctor_changed(android.graphics.Bitmap, byte[], android.graphics.Rect, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.ANTIBANDING_50HZ"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.ANTIBANDING_60HZ"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.ANTIBANDING_AUTO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.ANTIBANDING_OFF"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.EFFECT_AQUA"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.EFFECT_BLACKBOARD"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.EFFECT_MONO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.EFFECT_NEGATIVE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.EFFECT_NONE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.EFFECT_POSTERIZE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.EFFECT_SEPIA"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.EFFECT_SOLARIZE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.EFFECT_WHITEBOARD"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.FLASH_MODE_AUTO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.FLASH_MODE_OFF"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.FLASH_MODE_ON"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.FLASH_MODE_RED_EYE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.FLASH_MODE_TORCH"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.FOCUS_MODE_AUTO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.FOCUS_MODE_FIXED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.FOCUS_MODE_INFINITY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.FOCUS_MODE_MACRO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_ACTION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_AUTO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_BEACH"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_CANDLELIGHT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_FIREWORKS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_LANDSCAPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_NIGHT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_NIGHT_PORTRAIT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_PARTY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_PORTRAIT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_SNOW"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_SPORTS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_STEADYPHOTO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_SUNSET"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.SCENE_MODE_THEATRE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.WHITE_BALANCE_AUTO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.WHITE_BALANCE_CLOUDY_DAYLIGHT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.WHITE_BALANCE_DAYLIGHT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.WHITE_BALANCE_FLUORESCENT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.WHITE_BALANCE_INCANDESCENT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.WHITE_BALANCE_SHADE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.WHITE_BALANCE_TWILIGHT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.WHITE_BALANCE_WARM_FLUORESCENT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getAntibanding_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getColorEffect_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getFlashMode_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getFocusMode_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getJpegQuality_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getJpegThumbnailQuality_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getJpegThumbnailSize_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getSceneMode_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getSupportedAntibanding_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getSupportedColorEffects_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getSupportedFlashModes_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getSupportedFocusModes_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getSupportedPictureFormats_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getSupportedPictureSizes_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getSupportedPreviewFormats_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getSupportedPreviewFrameRates_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getSupportedPreviewSizes_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getSupportedSceneModes_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getSupportedWhiteBalance_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.getWhiteBalance_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.removeGpsData_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setAntibanding_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setColorEffect_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setFlashMode_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setFocusMode_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setGpsAltitude_added(double)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setGpsLatitude_added(double)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setGpsLongitude_added(double)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setGpsTimestamp_added(long)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setJpegQuality_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setJpegThumbnailQuality_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setJpegThumbnailSize_added(int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setRotation_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setSceneMode_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.Parameters.setWhiteBalance_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.cancelAutoFocus_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.lock_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.takePicture_added(android.hardware.Camera.ShutterCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback, android.hardware.Camera.PictureCallback)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.hardware.Camera.unlock_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.inputmethodservice"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.inputmethodservice.AbstractInputMethodService"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.inputmethodservice.AbstractInputMethodService.getKeyDispatcherState_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.inputmethodservice.InputMethodService"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.inputmethodservice.InputMethodService.onKeyLongPress_added(int, android.view.KeyEvent)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.location"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.location.GpsStatus.NmeaListener"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.location.LocationManager"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.location.LocationManager.addNmeaListener_added(android.location.GpsStatus.NmeaListener)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.location.LocationManager.removeNmeaListener_added(android.location.GpsStatus.NmeaListener)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_CONFIGURATION_DEFAULT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_CONFIGURATION_INVALID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_CONFIGURATION_MONO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_CONFIGURATION_STEREO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_INVALID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_BACK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_BACK_PROCESSED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_DEFAULT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_FRONT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_FRONT_PROCESSED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_LEFT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_LEFT_PROCESSED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_MONO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_PRESSURE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_RIGHT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_RIGHT_PROCESSED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_STEREO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_VOICE_DNLINK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_VOICE_UPLINK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_X_AXIS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_Y_AXIS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_IN_Z_AXIS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_5POINT1"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_7POINT1"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_BACK_CENTER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_BACK_LEFT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_BACK_RIGHT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_DEFAULT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_FRONT_CENTER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_FRONT_LEFT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_FRONT_LEFT_OF_CENTER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_FRONT_RIGHT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_FRONT_RIGHT_OF_CENTER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_LOW_FREQUENCY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_MONO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_QUAD"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_STEREO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioFormat.CHANNEL_OUT_SURROUND"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioManager"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioManager.ROUTE_ALL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioManager.ROUTE_BLUETOOTH_A2DP"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioManager.ROUTE_BLUETOOTH_SCO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioManager.ROUTE_EARPIECE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioManager.ROUTE_HEADSET"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioManager.ROUTE_SPEAKER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioManager.STREAM_DTMF"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioManager.getParameters_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioManager.isWiredHeadsetOn_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioManager.setBluetoothA2dpOn_changed(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioManager.setParameters_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.AudioManager.setWiredHeadsetOn_added(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.ExifInterface"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.MediaPlayer"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.MediaPlayer.MEDIA_INFO_METADATA_UPDATE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.ToneGenerator"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.media.ToneGenerator.startTone_added(int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.opengl"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.opengl.GLSurfaceView"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.opengl.GLSurfaceView.EGLContextFactory"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.opengl.GLSurfaceView.EGLWindowSurfaceFactory"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.opengl.GLSurfaceView.setEGLContextFactory_added(android.opengl.GLSurfaceView.EGLContextFactory)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.opengl.GLSurfaceView.setEGLWindowSurfaceFactory_added(android.opengl.GLSurfaceView.EGLWindowSurfaceFactory)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.BatteryManager"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.BatteryManager.EXTRA_HEALTH"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.BatteryManager.EXTRA_ICON_SMALL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.BatteryManager.EXTRA_LEVEL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.BatteryManager.EXTRA_PLUGGED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.BatteryManager.EXTRA_PRESENT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.BatteryManager.EXTRA_SCALE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.BatteryManager.EXTRA_STATUS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.BatteryManager.EXTRA_TECHNOLOGY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.BatteryManager.EXTRA_TEMPERATURE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.BatteryManager.EXTRA_VOLTAGE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.Build.VERSION_CODES"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.Build.VERSION_CODES.ECLAIR"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.Debug.MemoryInfo"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.Debug.MemoryInfo.CREATOR"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.Debug.MemoryInfo.describeContents_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.Debug.MemoryInfo.getTotalPrivateDirty_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.Debug.MemoryInfo.getTotalPss_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.Debug.MemoryInfo.getTotalSharedDirty_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.Debug.MemoryInfo.readFromParcel_added(android.os.Parcel)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.Debug.MemoryInfo.writeToParcel_added(android.os.Parcel, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.HandlerThread"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.HandlerThread.quit_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.os.ParcelUuid"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.AUTHORITY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.CONTENT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.CONTENT_EMAIL_ITEM_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.CONTENT_EMAIL_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.CONTENT_EMAIL_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.CONTENT_IM_ITEM_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.CONTENT_POSTAL_ITEM_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.CONTENT_POSTAL_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.CONTENT_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.CONTENT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.DEFAULT_SORT_ORDER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.PERSON_ID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.POSTAL_LOCATION_LATITUDE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.POSTAL_LOCATION_LONGITUDE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.PROTOCOL_AIM"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.PROTOCOL_GOOGLE_TALK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.PROTOCOL_ICQ"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.PROTOCOL_JABBER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.PROTOCOL_MSN"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.PROTOCOL_QQ"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.PROTOCOL_SKYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.PROTOCOL_YAHOO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.addPostalLocation_changed(android.content.Context, long, double, double)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.decodeImProtocol_changed(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.encodeCustomImProtocol_changed(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.encodePredefinedImProtocol_changed(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethods.getDisplayLabel_changed(android.content.Context, int, int, java.lang.CharSequence)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethodsColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethodsColumns.AUX_DATA"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethodsColumns.DATA"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethodsColumns.ISPRIMARY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethodsColumns.KIND"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethodsColumns.LABEL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethodsColumns.TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethodsColumns.TYPE_CUSTOM"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethodsColumns.TYPE_HOME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethodsColumns.TYPE_OTHER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ContactMethodsColumns.TYPE_WORK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Extensions"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Extensions.CONTENT_ITEM_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Extensions.CONTENT_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Extensions.CONTENT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Extensions.DEFAULT_SORT_ORDER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Extensions.PERSON_ID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ExtensionsColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ExtensionsColumns.NAME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.ExtensionsColumns.VALUE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupMembership"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupMembership.CONTENT_DIRECTORY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupMembership.CONTENT_ITEM_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupMembership.CONTENT_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupMembership.CONTENT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupMembership.DEFAULT_SORT_ORDER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupMembership.GROUP_ID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupMembership.GROUP_SYNC_ACCOUNT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupMembership.GROUP_SYNC_ACCOUNT_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupMembership.GROUP_SYNC_ID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupMembership.PERSON_ID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupMembership.RAW_CONTENT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Groups"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Groups.CONTENT_ITEM_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Groups.CONTENT_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Groups.CONTENT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Groups.DEFAULT_SORT_ORDER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Groups.DELETED_CONTENT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Groups.GROUP_ANDROID_STARRED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Groups.GROUP_MY_CONTACTS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupsColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupsColumns.NAME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupsColumns.NOTES"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupsColumns.SHOULD_SYNC"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.GroupsColumns.SYSTEM_ID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.ATTACH_IMAGE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.EXTRA_CREATE_DESCRIPTION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.EXTRA_FORCE_CREATE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.ACTION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.COMPANY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.EMAIL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.EMAIL_ISPRIMARY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.EMAIL_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.FULL_MODE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.IM_HANDLE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.IM_ISPRIMARY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.IM_PROTOCOL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.JOB_TITLE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.NAME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.NOTES"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.PHONE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.PHONETIC_NAME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.PHONE_ISPRIMARY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.PHONE_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.POSTAL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.POSTAL_ISPRIMARY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.POSTAL_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.SECONDARY_EMAIL_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.SECONDARY_PHONE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.SECONDARY_PHONE_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.TERTIARY_EMAIL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.TERTIARY_EMAIL_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.TERTIARY_PHONE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.TERTIARY_PHONE_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.Insert.ctor_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.SEARCH_SUGGESTION_CLICKED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.SEARCH_SUGGESTION_CREATE_CONTACT_CLICKED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.SEARCH_SUGGESTION_DIAL_NUMBER_CLICKED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.SHOW_OR_CREATE_CONTACT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.UI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.UI.FILTER_CONTACTS_ACTION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.UI.FILTER_TEXT_EXTRA_KEY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.UI.GROUP_NAME_EXTRA_KEY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.UI.LIST_ALL_CONTACTS_ACTION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.UI.LIST_CONTACTS_WITH_PHONES_ACTION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.UI.LIST_DEFAULT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.UI.LIST_FREQUENT_ACTION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.UI.LIST_GROUP_ACTION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.UI.LIST_STARRED_ACTION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.UI.LIST_STREQUENT_ACTION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.UI.TITLE_EXTRA_KEY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.UI.ctor_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Intents.ctor_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.KIND_EMAIL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.KIND_IM"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.KIND_ORGANIZATION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.KIND_PHONE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.KIND_POSTAL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.OrganizationColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.OrganizationColumns.COMPANY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.OrganizationColumns.ISPRIMARY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.OrganizationColumns.LABEL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.OrganizationColumns.PERSON_ID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.OrganizationColumns.TITLE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.OrganizationColumns.TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.OrganizationColumns.TYPE_CUSTOM"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.OrganizationColumns.TYPE_OTHER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.OrganizationColumns.TYPE_WORK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Organizations"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Organizations.CONTENT_DIRECTORY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Organizations.CONTENT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Organizations.DEFAULT_SORT_ORDER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Organizations.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.CONTENT_FILTER_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.CONTENT_ITEM_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.CONTENT_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.CONTENT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.ContactMethods"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.ContactMethods.CONTENT_DIRECTORY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.ContactMethods.DEFAULT_SORT_ORDER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.DEFAULT_SORT_ORDER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.DELETED_CONTENT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.Extensions"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.Extensions.CONTENT_DIRECTORY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.Extensions.DEFAULT_SORT_ORDER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.Extensions.PERSON_ID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.PRIMARY_EMAIL_ID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.PRIMARY_ORGANIZATION_ID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.PRIMARY_PHONE_ID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.Phones"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.Phones.CONTENT_DIRECTORY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.Phones.DEFAULT_SORT_ORDER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.addToGroup_changed(android.content.ContentResolver, long, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.addToGroup_changed(android.content.ContentResolver, long, long)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.addToMyContactsGroup_changed(android.content.ContentResolver, long)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.createPersonInMyContactsGroup_changed(android.content.ContentResolver, android.content.ContentValues)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.loadContactPhoto_changed(android.content.Context, android.net.Uri, int, android.graphics.BitmapFactory.Options)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.markAsContacted_changed(android.content.ContentResolver, long)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.openContactPhotoInputStream_changed(android.content.ContentResolver, android.net.Uri)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.queryGroups_changed(android.content.ContentResolver, long)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.People.setPhotoData_changed(android.content.ContentResolver, android.net.Uri, byte[])"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PeopleColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PeopleColumns.CUSTOM_RINGTONE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PeopleColumns.DISPLAY_NAME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PeopleColumns.LAST_TIME_CONTACTED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PeopleColumns.NAME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PeopleColumns.NOTES"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PeopleColumns.PHONETIC_NAME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PeopleColumns.PHOTO_VERSION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PeopleColumns.SEND_TO_VOICEMAIL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PeopleColumns.STARRED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PeopleColumns.TIMES_CONTACTED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Phones"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Phones.CONTENT_FILTER_URL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Phones.CONTENT_ITEM_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Phones.CONTENT_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Phones.CONTENT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Phones.DEFAULT_SORT_ORDER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Phones.PERSON_ID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Phones.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Phones.getDisplayLabel_changed(android.content.Context, int, java.lang.CharSequence, java.lang.CharSequence[])"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns.ISPRIMARY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns.LABEL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns.NUMBER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns.NUMBER_KEY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns.TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns.TYPE_CUSTOM"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns.TYPE_FAX_HOME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns.TYPE_FAX_WORK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns.TYPE_HOME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns.TYPE_MOBILE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns.TYPE_OTHER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns.TYPE_PAGER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhonesColumns.TYPE_WORK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Photos"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Photos.CONTENT_DIRECTORY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Photos.CONTENT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Photos.DEFAULT_SORT_ORDER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhotosColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhotosColumns.DATA"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhotosColumns.DOWNLOAD_REQUIRED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhotosColumns.EXISTS_ON_SERVER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhotosColumns.LOCAL_VERSION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhotosColumns.PERSON_ID"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PhotosColumns.SYNC_ERROR"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PresenceColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PresenceColumns.IM_ACCOUNT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PresenceColumns.IM_HANDLE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.PresenceColumns.IM_PROTOCOL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Settings"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Settings.CONTENT_DIRECTORY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Settings.CONTENT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Settings.DEFAULT_SORT_ORDER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Settings.SYNC_EVERYTHING"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Settings.getSetting_changed(android.content.ContentResolver, java.lang.String, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.Settings.setSetting_changed(android.content.ContentResolver, java.lang.String, java.lang.String, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.SettingsColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.SettingsColumns.KEY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.SettingsColumns.VALUE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.SettingsColumns._SYNC_ACCOUNT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Contacts.SettingsColumns._SYNC_ACCOUNT_TYPE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.AggregationExceptions"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.BaseSyncColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.BaseTypes"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.CommonColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.Email"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.Event"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.GroupMembership"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.Im"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.Nickname"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.Note"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.Organization"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.Phone"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.Photo"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.Relation"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredName"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.StructuredPostal"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.CommonDataKinds.Website"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.ContactOptionsColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.ContactStatusColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.Contacts"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.Contacts.AggregationSuggestions"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.Contacts.Data"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.Contacts.Photo"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.ContactsColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.Data"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.DataColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.DataColumnsWithJoins"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.Groups"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.GroupsColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.Intents"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.Intents.Insert"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.PhoneLookup"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.PhoneLookupColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.Presence"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.PresenceColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.QuickContact"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.RawContacts"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.RawContacts.Data"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.RawContacts.Entity"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.RawContactsColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.RawContactsEntity"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.Settings"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.SettingsColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.StatusColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.StatusUpdates"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.SyncColumns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.ContactsContract.SyncState"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.MediaStore.Images.Thumbnails"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.MediaStore.Images.Thumbnails.THUMB_DATA"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.MediaStore.Images.Thumbnails.cancelThumbnailRequest_added(android.content.ContentResolver, long)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.MediaStore.Images.Thumbnails.getThumbnail_added(android.content.ContentResolver, long, int, android.graphics.BitmapFactory.Options)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.MediaStore.Video.Thumbnails"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Settings"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Settings.ACTION_ACCESSIBILITY_SETTINGS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Settings.ACTION_PRIVACY_SETTINGS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Settings.System"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Settings.System.ALARM_ALERT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.Settings.System.DEFAULT_ALARM_ALERT_URI"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.SyncStateContract"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.SyncStateContract.Columns"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.SyncStateContract.Constants"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.provider.SyncStateContract.Helpers"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.NeighboringCellInfo"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.NeighboringCellInfo.ctor_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.NeighboringCellInfo.ctor_changed(int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.NeighboringCellInfo.getLac_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.NeighboringCellInfo.getNetworkType_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.NeighboringCellInfo.getPsc_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.NeighboringCellInfo.setCid_changed(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.NeighboringCellInfo.setRssi_changed(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.PhoneNumberUtils"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.PhoneNumberUtils.compare_added(android.content.Context, java.lang.String, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.PhoneStateListener"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.PhoneStateListener.onSignalStrengthChanged_changed(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.TelephonyManager"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.TelephonyManager.DATA_ACTIVITY_DORMANT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.TelephonyManager.NETWORK_TYPE_1xRTT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.TelephonyManager.NETWORK_TYPE_CDMA"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.TelephonyManager.NETWORK_TYPE_EVDO_0"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.TelephonyManager.NETWORK_TYPE_EVDO_A"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.TelephonyManager.NETWORK_TYPE_HSDPA"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.TelephonyManager.NETWORK_TYPE_HSPA"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.TelephonyManager.NETWORK_TYPE_HSUPA"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.TelephonyManager.PHONE_TYPE_CDMA"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.TelephonyManager.hasIccCard_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.telephony.cdma"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.AndroidTestRunner"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.AndroidTestRunner.setInstrumentaiton_changed(android.app.Instrumentation)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.AndroidTestRunner.setInstrumentation_added(android.app.Instrumentation)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.InstrumentationTestCase"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.InstrumentationTestCase.injectInsrumentation_changed(android.app.Instrumentation)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.InstrumentationTestCase.injectInstrumentation_added(android.app.Instrumentation)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.mock"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.mock.MockContext"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.mock.MockContext.sendStickyOrderedBroadcast_added(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.mock.MockContext.startIntentSender_added(android.content.IntentSender, android.content.Intent, int, int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.mock.MockPackageManager"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.mock.MockPackageManager.checkSignatures_added(int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.mock.MockPackageManager.getInstallerPackageName_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.mock.MockPackageManager.getSystemAvailableFeatures_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.test.mock.MockPackageManager.hasSystemFeature_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.InputType"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.TextPaint"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.TextPaint.density"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.format"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.format.DateUtils"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.format.DateUtils.formatDateRange_added(android.content.Context, java.util.Formatter, long, long, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.format.Formatter"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.format.Formatter.formatShortFileSize_added(android.content.Context, long)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.style"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.style.AbsoluteSizeSpan"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.style.AbsoluteSizeSpan.ctor_added(int, boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.style.AbsoluteSizeSpan.getDip_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.style.ImageSpan"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.style.ImageSpan.ctor_changed(android.graphics.Bitmap)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.style.ImageSpan.ctor_changed(android.graphics.Bitmap, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.text.style.LineHeightSpan.WithDensity"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.util"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.util.Pair"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.HapticFeedbackConstants"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.HapticFeedbackConstants.VIRTUAL_KEY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.Callback"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.Callback.onKeyLongPress_added(int, android.view.KeyEvent)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.DispatcherState"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.FLAG_CANCELED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.FLAG_CANCELED_LONG_PRESS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.FLAG_LONG_PRESS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.FLAG_TRACKING"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.FLAG_VIRTUAL_HARD_KEY"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.changeTimeRepeat_added(android.view.KeyEvent, long, int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.ctor_changed(android.view.KeyEvent, long, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.dispatch_added(android.view.KeyEvent.Callback, android.view.KeyEvent.DispatcherState, java.lang.Object)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.dispatch_changed(android.view.KeyEvent.Callback)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.isCanceled_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.isLongPress_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.isTracking_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.KeyEvent.startTracking_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.ACTION_MASK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.ACTION_POINTER_1_DOWN"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.ACTION_POINTER_1_UP"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.ACTION_POINTER_2_DOWN"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.ACTION_POINTER_2_UP"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.ACTION_POINTER_3_DOWN"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.ACTION_POINTER_3_UP"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.ACTION_POINTER_DOWN"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.ACTION_POINTER_ID_MASK"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.ACTION_POINTER_ID_SHIFT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.ACTION_POINTER_UP"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.findPointerIndex_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.getHistoricalPressure_added(int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.getHistoricalSize_added(int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.getHistoricalX_added(int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.getHistoricalY_added(int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.getPointerCount_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.getPointerId_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.getPressure_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.getSize_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.getX_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.getY_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.obtainNoHistory_added(android.view.MotionEvent)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.MotionEvent.obtain_added(long, long, int, int, float, float, float, float, int, float, float, int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.Surface"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.Surface.GPU"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.Surface.HARDWARE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.Surface.lockCanvas_changed(android.graphics.Rect)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.SurfaceHolder"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.SurfaceHolder.SURFACE_TYPE_GPU"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.SurfaceHolder.SURFACE_TYPE_HARDWARE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.SurfaceView"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.SurfaceView.setZOrderMediaOverlay_added(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.SurfaceView.setZOrderOnTop_added(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.View"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.View.awakenScrollBars_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.View.awakenScrollBars_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.View.awakenScrollBars_added(int, boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.View.getKeyDispatcherState_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.View.isScrollbarFadingEnabled_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.View.onKeyLongPress_added(int, android.view.KeyEvent)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.View.setScrollbarFadingEnabled_added(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.ViewConfiguration"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.ViewConfiguration.getScrollBarFadeDuration_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.ViewConfiguration.getScrollDefaultDelay_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.Window.Callback"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.Window.Callback.onAttachedToWindow_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.Window.Callback.onDetachedFromWindow_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.WindowManager.LayoutParams"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.WindowManager.LayoutParams.FLAG_DISMISS_KEYGUARD"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.WindowManager.LayoutParams.MEMORY_TYPE_GPU"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.WindowManager.LayoutParams.MEMORY_TYPE_HARDWARE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.WindowManager.LayoutParams.TYPE_WALLPAPER"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.animation"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.animation.Animation"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.animation.Animation.getDetachWallpaper_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.view.animation.Animation.setDetachWallpaper_added(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.CallbackProxy"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.CallbackProxy.onExceededDatabaseQuota_added(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.GeolocationPermissions"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.GeolocationPermissions.Callback"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.Plugin"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.Plugin.ctor_changed(java.lang.String, java.lang.String, java.lang.String, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.Plugin.dispatchClickEvent_changed(android.content.Context)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.Plugin.getDescription_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.Plugin.getFileName_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.Plugin.getName_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.Plugin.getPath_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.Plugin.setClickHandler_changed(android.webkit.Plugin.PreferencesClickHandler)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.Plugin.setDescription_changed(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.Plugin.setFileName_changed(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.Plugin.setName_changed(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.Plugin.setPath_changed(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginData"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginData.ctor_changed(java.io.InputStream, long, java.util.Map<java.lang.String, java.lang.String[]>, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginData.getContentLength_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginData.getHeaders_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginData.getInputStream_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginData.getStatusCode_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginList"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginList.addPlugin_changed(android.webkit.Plugin)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginList.clear_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginList.ctor_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginList.getList_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginList.pluginClicked_changed(android.content.Context, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginList.removePlugin_changed(android.webkit.Plugin)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.PluginStub"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.UrlInterceptHandler"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.UrlInterceptHandler.getPluginData_changed(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.UrlInterceptRegistry"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.UrlInterceptRegistry.getPluginData_changed(java.lang.String, java.util.Map<java.lang.String, java.lang.String>)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.UrlInterceptRegistry.registerHandler_changed(android.webkit.UrlInterceptHandler)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.UrlInterceptRegistry.setUrlInterceptDisabled_changed(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.UrlInterceptRegistry.unregisterHandler_changed(android.webkit.UrlInterceptHandler)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.UrlInterceptRegistry.urlInterceptDisabled_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebChromeClient"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebChromeClient.onExceededDatabaseQuota_added(java.lang.String, java.lang.String, long, long, long, android.webkit.WebStorage.QuotaUpdater)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebChromeClient.onGeolocationPermissionsHidePrompt_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebChromeClient.onGeolocationPermissionsShowPrompt_added(java.lang.String, android.webkit.GeolocationPermissions.Callback)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebSettings"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebSettings.getDatabaseEnabled_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebSettings.getDatabasePath_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebSettings.getUseDoubleTree_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebSettings.setDatabaseEnabled_added(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebSettings.setDatabasePath_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebSettings.setGeolocationDatabasePath_added(java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebSettings.setGeolocationEnabled_added(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebSettings.setUseDoubleTree_changed(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebStorage"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebStorage.QuotaUpdater"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebView"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebView.getPluginList_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebView.postUrl_added(java.lang.String, byte[])"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebView.refreshPlugins_changed(boolean)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_AUTHENTICATION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_BAD_URL"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_CONNECT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_FAILED_SSL_HANDSHAKE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_FILE"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_FILE_NOT_FOUND"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_HOST_LOOKUP"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_IO"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_PROXY_AUTHENTICATION"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_REDIRECT_LOOP"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_TIMEOUT"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_TOO_MANY_REQUESTS"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_UNKNOWN"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_UNSUPPORTED_AUTH_SCHEME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.webkit.WebViewClient.ERROR_UNSUPPORTED_SCHEME"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.AutoCompleteTextView"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.AutoCompleteTextView.getDropDownBackground_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.AutoCompleteTextView.getDropDownHorizontalOffset_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.AutoCompleteTextView.getDropDownVerticalOffset_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.AutoCompleteTextView.setDropDownBackgroundDrawable_added(android.graphics.drawable.Drawable)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.AutoCompleteTextView.setDropDownBackgroundResource_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.AutoCompleteTextView.setDropDownHorizontalOffset_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.AutoCompleteTextView.setDropDownVerticalOffset_added(int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.MediaController.MediaPlayerControl"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.MediaController.MediaPlayerControl.canPause_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.MediaController.MediaPlayerControl.canSeekBackward_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.MediaController.MediaPlayerControl.canSeekForward_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.QuickContactBadge"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.SimpleCursorTreeAdapter"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.SimpleCursorTreeAdapter.ViewBinder"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.SimpleCursorTreeAdapter.getViewBinder_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.SimpleCursorTreeAdapter.setViewBinder_added(android.widget.SimpleCursorTreeAdapter.ViewBinder)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.SimpleCursorTreeAdapter.setViewText_added(android.widget.TextView, java.lang.String)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.VideoView"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.VideoView.canPause_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.VideoView.canSeekBackward_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="android.widget.VideoView.canSeekForward_added()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="dalvik.system"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="dalvik.system.AllocationLimitError"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="dalvik.system.PotentialDeadlockError"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="dalvik.system.StaleDexCacheError"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="dalvik.system.TemporaryDirectory"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="dalvik.system.TouchDex"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="dalvik.system.VMDebug"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="dalvik.system.VMRuntime"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="dalvik.system.VMStack"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="dalvik.system.Zygote"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.lang"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.lang.String"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.lang.String.ctor_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.lang.String.ctor_changed(byte[])"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.lang.String.ctor_changed(byte[], int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.lang.String.ctor_changed(byte[], int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.lang.String.ctor_changed(byte[], int, int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.net"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.net.Socket"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.net.Socket.ctor_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.net.Socket.ctor_changed(java.lang.String, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.net.Socket.ctor_changed(java.lang.String, int, java.net.InetAddress, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.net.Socket.ctor_changed(java.net.Proxy)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.net.Socket.ctor_changed(java.net.SocketImpl)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.util"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.util.Date"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.util.Date.ctor_changed()"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.util.Date.ctor_changed(int, int, int, int, int, int)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.util.concurrent"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.util.concurrent.BlockingQueue"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.util.concurrent.BlockingQueue.contains_added(java.lang.Object)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.util.concurrent.BlockingQueue.remove_added(java.lang.Object)"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.util.concurrent.locks"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+<comment>
+ <identifier id="java.util.concurrent.locks.AbstractOwnableSynchronizer"/>
+ <text>
+ InsertCommentsHere
+ </text>
+</comment>
+
+</comments>
diff --git a/docs/html/sdk/eclipse-adt.jd b/docs/html/sdk/eclipse-adt.jd
new file mode 100644
index 0000000..84d37e0
--- /dev/null
+++ b/docs/html/sdk/eclipse-adt.jd
@@ -0,0 +1,302 @@
+page.title=Installing and Updating the ADT Plugin
+sdk.preview=0
+
+@jd:body
+
+<div id="qv-wrapper">
+<div id="qv">
+
+ <h2>In this document</h2>
+ <ol>
+ <li><a href="#preparing">Prepare for Installation</a></li>
+ <li><a href="#installing">Installing the ADT Plugin</a>
+ <ol>
+ <li><a href="#troubleshooting">Troubleshooting</a></li>
+ </ol>
+ </li>
+ <li><a href="#updating">Updating the ADT Plugin</a></li>
+ <li><a href="#uninstalling">Uninstalling the ADT Plugin</a></li>
+ </ol>
+
+</div>
+</div>
+
+<p>Android offers a custom plugin for the Eclipse IDE, called Android
+Development Tools (ADT), that is designed to give you a powerful,
+integrated environment in which to build Android applications. It
+extends the capabilites of Eclipse to let you quickly set up new Android
+projects, create an application UI, add components based on the Android
+Framework API, debug your applications using the Android SDK tools, and even export
+signed (or unsigned) APKs in order to distribute your application.</p>
+
+<p>In general, using Eclipse with ADT is a highly recommended approach to
+Android development and is the fastest way to get started.
+
+<p>To install and update the ADT Plugin, you can take advantage of the Eclipse
+remote update feature. By setting up a remote update site, you can
+easily download, install, and check for ADT updates. Alternatively, you
+can download the latest ADT to your development
+computer as a local site archive. The sections below provide nstructions
+for both methods.</p>
+
+
+<h2 id="preparing">Prepare for Installation</h2>
+
+<p>Before you begin, take a moment to confirm that your development machine
+meets the <a href="requirements.html">System Requirements</a>.</p>
+
+<p>If you will be developing in Eclipse with the Android Development
+Tools (ADT) Plugin — the recommended path if you are new to
+Android — make sure that you have a suitable version of Eclipse
+installed on your computer (3.4 or newer is recommended). If you need
+to install Eclipse, you can download it from this location: </p>
+
+
+<h2 id="installing">Installing the ADT Plugin</h2>
+
+<p>Once you have the Eclipse IDE installed, as described in <a
+href="#preparing">Preparing for Installation</a>, above, follow these steps to
+download the ADT plugin and install it in your respective Eclipse environment.
+</p>
+
+<table style="font-size:100%">
+<tr><th>Eclipse 3.4 (Ganymede)</th><th>Eclipse 3.5 (Galileo)</th></tr>
+<tr>
+<td width="45%">
+<!-- 3.4 steps -->
+<ol>
+ <li>Start Eclipse, then select <strong>Help</strong> > <strong>Software Updates...</strong>.
+ In the dialog that appears, click the <strong>Available Software</strong> tab. </li>
+ <li>Click <strong>Add Site...</strong> </li>
+ <li>In the Add Site dialog that appears, enter this URL in the "Location" field:
+ <pre style="margin-left:0">https://dl-ssl.google.com/android/eclipse/</pre>
+ <p>Note: If you have trouble aqcuiring the plugin, try using "http" in the Location URL,
+ instead of "https" (https is preferred for security reasons).</p>
+ <p>Click <strong>OK</strong>.</p></li>
+ <li>Back in the Available Software view, you should see the plugin listed by the URL,
+ with "Developer Tools" nested within it. Select the checkbox next to
+ Developer Tools and click <strong>Install...</strong></li>
+ <li>On the subsequent Install window, "Android DDMS" and "Android Development Tools"
+ should both be checked. Click <strong>Next</strong>. </li>
+ <li>Read and accept the license agreement, then click <strong>Finish</strong>.</li>
+ <li>Restart Eclipse. </li>
+</ol>
+
+</td>
+<td>
+<!-- 3.5 steps -->
+<ol>
+ <li>Start Eclipse, then select <strong>Help</strong> > <strong>Install
+ New Softare</strong>. </li>
+ <li>In the Available Software dialog, click <strong>Add...</strong>.</li>
+ <li>In the Add Site dialog that appears, enter a name for the remote site
+ (for example, "Android Plugin") in the "Name" field.
+ <p>In the "Location" field, enter this URL:</p>
+ <pre>https://dl-ssl.google.com/android/eclipse/</pre>
+ <p>Note: If you have trouble aqcuiring the plugin, you can try
+ using "http" in the URL, instead of "https" (https is preferred for
+ security reasons).</p>
+ <p>Click <strong>OK</strong>.</p>
+ </li>
+ <li>Back in the Available Software view, you should now see "Developer
+ Tools" added to the list. Select the checkbox next to Developer Tools,
+ which will automatically select the nested tools Android DDMS and Android
+ Development Tools.
+ Click <strong>Next</strong>. </li>
+ <li>In the resulting Install Details dialog, the Android DDMS and Android
+ Development Tools features are listed. Click <strong>Next</strong> to
+ read and accept the license agreement and install any dependencies,
+ then click <strong>Finish</strong>. </li>
+ <li>Restart Eclipse. </li>
+
+</ol>
+</td>
+</tr>
+</table>
+
+<p>Now modify your Eclipse preferences to point to the Android SDK directory:</p>
+<ol>
+ <li>Select <strong>Window</strong> > <strong>Preferences...</strong> to open the Preferences
+ panel (Mac OS X: <strong>Eclipse</strong> > <strong>Preferences</strong>).</li>
+ <li>Select <strong>Android</strong> from the left panel. </li>
+ <li>For the <em>SDK Location</em> in the main panel, click <strong>Browse...</strong> and
+ locate your downloaded SDK directory. </li>
+ <li>Click <strong>Apply</strong>, then <strong>OK</strong>.</li>
+</ol>
+
+<p>Done! If you haven't encountered any problems, then you're ready to
+begin developing Android applications. </p>
+
+
+<h3 id="troubleshooting">Troubleshooting ADT Installation</h3>
+
+<p> If you are having trouble downloading the ADT plugin after following the
+steps above, here are some suggestions: </p>
+
+<ul>
+ <li>If Eclipse can not find the remote update site containing the ADT plugin,
+try changing the remote site URL to use http, rather than https. That is, set
+the Location for the remote site to:
+<pre>http://dl-ssl.google.com/android/eclipse/</pre></li>
+<li>If you are behind a firewall (such as a corporate firewall), make sure that
+you have properly configured your proxy settings in Eclipse. In Eclipse 3.3/3.4,
+you can configure proxy information from the main Eclipse menu in
+<strong>Window</strong> (on Mac OS X, <strong>Eclipse</strong>) >
+<strong>Preferences</strong> > <strong>General</strong> > <strong>Network
+Connections</strong>.</li>
+</ul>
+
+<p> If you are still unable to use Eclipse to download the ADT plugin as a
+remote update site, you can download the ADT zip file to your local machine and
+manually install it:</p>
+
+<ol>
+ <li>Download the current ADT Plugin zip file from the table below (do not unpack it).
+
+ <table class="download">
+ <tr>
+ <th>Name</th>
+ <th>Package</th>
+ <th>Size</th>
+ <th>MD5 Checksum</th>
+ </tr>
+ <tr>
+ <td>ADT {@adtZipVersion}</td>
+ <td>
+ <a href="http://dl.google.com/android/{@adtZipDownload}">{@adtZipDownload}</a>
+ </td>
+ <td>{@adtZipBytes} bytes</td>
+ <td>{@adtZipChecksum}</td>
+ </tr>
+</table>
+</li>
+
+</li>
+ <li>Follow steps 1 and 2 in the <a href="#InstallingADT">default install
+ instructions</a> (above).</li>
+ <li>In the Add Site dialog, click <strong>Archive</strong>.</li>
+ <li>Browse and select the downloaded zip file.</li>
+ <li>In Eclipse 3.5 only, enter a name for the local update site (e.g.,
+ "Android Plugin") in the "Name" field.</li>
+ <li>Click <strong>OK</strong>.
+ <li>Follow the remaining procedures as listed for
+ <a href="#InstallingADT">default installation</a> above,
+ starting from step 4.</li>
+</ol>
+
+<p>To update your plugin once you've installed using the zip file, you will have
+to follow these steps again instead of the default update instructions.</p>
+
+<h4>Other install errors</h4>
+
+<p>Note that there are features of ADT that require some optional
+Eclipse components (for example, WST). If you encounter an error when
+installing ADT, your Eclipse installion might not include these components.
+For information about how to quickly add the necessary components to your
+Eclipse installation, see the troubleshooting topic
+<a href="{@docRoot}guide/appendix/faq/troubleshooting.html#installeclipsecomponents">ADT
+Installation Error: "requires plug-in org.eclipse.wst.sse.ui"</a>.</p>
+
+<h4>For Linux users</h4>
+<p>If you encounter this error when installing the ADT Plugin for Eclipse:
+<pre>
+An error occurred during provisioning.
+Cannot connect to keystore.
+JKS</pre>
+<p>
+...then your development machine lacks a suitable Java VM. Installing Sun
+Java 6 will resolve this issue and you can then reinstall the ADT
+Plugin.</p>
+
+
+<h2 id="updating">Updating Your Eclipse ADT Plugin</h2>
+
+<p>From time to time, a new version of the ADT Plugin becomes available. Follow
+the steps below to check whether an update is available and, if so, to install it.
+For
+information about new features in ADT, see the <a
+href="{@docRoot}sdk/adt-notes.html">ADT Plugin Notes</a> document. </p>
+
+<table style="font-size:100%">
+<tr><th>Eclipse 3.4 (Ganymede)</th><th>Eclipse 3.5 (Galileo)</th></tr>
+<tr>
+<td width="50%">
+<!-- 3.4 steps -->
+<ol>
+ <li>Select <strong>Help</strong> > <strong>Software Updates</strong>.</li>
+ <li>Select the <strong>Available Software</strong> tab.</li>
+ <li>Select the checkboxes next to Android DDMS and Android Developer Tools,
+ then click <strong>Update</strong>.</li>
+ <li>In the resulting Available Updates dialog, ensure that both Android DDMS
+ and Android Development Tools are selected, then click
+ <strong>Next</strong>.</li>
+ <li>Read and accept the license agreement and then click <strong>Finish</strong>.
+ This will download and install the latest version of Android DDMS and
+ Android Development Tools.</li>
+ <li>Restart Eclipse.</li>
+</ol>
+</td>
+<td>
+<!-- 3.5 steps -->
+<ol>
+ <li>Select <strong>Help</strong> > <strong>Check for Updates</strong>. </li>
+ <li>In the resulting Available Updates dialog, locate the Android DDMS and
+ Android Development Tools features in the list and ensure that the checkboxes
+ next to them are selected. Click <strong>Next</strong>.
+ <p>If the Available Updates dialog does not list Android DDMS and Android
+ Development tools, make sure that you have set up a remote update site
+ for them, as described in
+ <a href="#installing">Installing the ADT Plugin</a>.
+ </p></li>
+ <li>In the Update Details dialog, click <strong>Next</strong>.</li>
+ <li>Read and accept the license agreement and then click <strong>Finish</strong>.
+ This will download and install the latest version of Android DDMS and
+ Android Development Tools.</li>
+ <li>Restart Eclipse.</li>
+</ol>
+</td>
+</tr>
+</table>
+
+
+<p>If you encounter problems during the update of ADT, you
+can try removing the existing ADT plugin and then performing a fresh
+installation. Fully remove your existing ADT Plugin as described in <a
+href="#uninstalling">Uninstalling the ADT Plugin</a>, below, and then follow the guide to <a
+href="#installing">Installing the ADT Plugin</a>.</p>
+
+
+<h2 id="uninstalling">Uninstalling the ADT plugin</h2>
+
+<p><p>If you encounter problems when installing or updating ADT, you
+can try removing the existing ADT plugin and then performing a fresh
+installation. To remove ADT, follow these steps: </p>
+
+<table style="font-size:100%">
+<tr><th>Eclipse 3.4 (Ganymede)</th><th>Eclipse 3.5 (Galileo)</th></tr>
+<tr>
+<td width="50%">
+<!-- 3.4 steps -->
+<ol>
+ <li>Select <strong>Help</strong> > <strong>Software Updates</strong> >
+ <strong>Manage Configuration</strong>. </li>
+ <li>Expand the list in the left panel to reveal the installed tools.</li>
+ <li>Right-click "Android Editors" and click <strong>Uninstall</strong>. Click <strong>OK</strong>
+ to confirm.</li>
+ <li>Restart Eclipse.
+ <p>(Do not uninstall "Android Development Tools".)</p></li>
+</ol>
+</td>
+<td>
+<!-- 3.5 steps -->
+<ol>
+ <li>Select <strong>Help</strong> > <strong>Install New Software</strong>.</li>
+ <li>In the "Details" panel, click the "What is already installed?" link.</li>
+ <li>In the <strong>Eclipse Installation Details</strong> dialog, select "Android DDMS" and "Android Development Tools" and then click <strong>Uninstall</strong>.</li>
+ <li>In the next window, confirm that the ADT features are selected for uninstall and then click <strong>Finish</strong> to uninstall.</li>
+ <li>Restart Eclipse.</li>
+</ol>
+</td>
+</tr>
+</table>
+
diff --git a/docs/html/sdk/index.jd b/docs/html/sdk/index.jd
index e82ed34..8b918e4 100644
--- a/docs/html/sdk/index.jd
+++ b/docs/html/sdk/index.jd
@@ -1,104 +1,72 @@
-page.title=Android 2.0 SDK, Release 1
+page.title=Android SDK
sdk.redirect=0
sdk.version=2.0
-
sdk.date=October 2009
-sdk.win_download=android-sdk-windows-2.0_r1.zip
+sdk.win_download=android-sdk-windows_r1.zip
sdk.win_bytes=
sdk.win_checksum=
-sdk.mac_download=android-sdk-mac_x86-2.0_r1.zip
+sdk.mac_download=android-sdk-mac_x86_r1.zip
sdk.mac_bytes=
sdk.mac_checksum=
-sdk.linux_download=android-sdk-linux_x86-2.0_r1.tgz
+sdk.linux_download=android-sdk-linux_x86_r1.tgz
sdk.linux_bytes=
sdk.linux_checksum=
-adt.zip_download=ADT-0.9.4.zip
-adt.zip_version=0.9.4
-adt.zip_bytes=
-adt.zip_checksum=
-
@jd:body
-<p>For more information on this SDK release, read the
+<p>For important information about this SDK release, please review the
<a href="{@docRoot}sdk/RELEASENOTES.html">Release Notes</a>.</p>
-<p>For setup procedures, read the
-<a href="{@docRoot}sdk/{@sdkCurrent}/installing.html">Installing</a> guide.</p>
+<div class="special">
+<p>The Android SDK has changed! If you've worked with the Android SDK before, you will notice several important differences:</p>
-<h2>SDK Contents</h2>
+<ul>
+<li style="margin-top:.5em">The SDK downloadable package includes <em>only</em> the latest version of the Android SDK Tools.</li>
+<li>Once you've installed the SDK, you now use the Android SDK and AVD Manager to download all of the SDK components that you need, such as Android platforms, SDK add-ons, tools, and documentation. </li>
+<li>The new approach is modular — you can install only the components you need and update any or all components without affecting your development environment.</li>
+<li>In short, once you've installed the new SDK, you will not need to download an SDK package again. Instead, you will use the Android SDK and AVD Manager to keep your development environment up-to-date. </li>
+</ul>
-<h4>Development tools</h4>
+<p>If you are currently using the Android 1.6 SDK, you do not need to install the new SDK, since your existing SDK incudes the Android SDK and AVD Manager tool. To develop against Android 2.0, for example, you could just download the updated SDK Tools (Revision 3) and the Android 2.0 platform into your existing SDK. </p>
+</div>
-<p>The SDK includes a full set of tools for developing and debugging application
-code and designing an application UI. You can read about the tools in the <a
-href="{@docRoot}guide/developing/tools/index.html">Dev Guide</a> and access them
-in the <code><em><sdk></em>/tools/</code> directory.</p>
+<h2>Quick Start</h2>
-<h4 id="system_images">Android Platforms</h4>
+<p class="xnote">The steps below provide an overview of how to get started with the Android SDK. For detailed instructions, start with the <a href="{@docRoot}sdk/installing.html">Installing</a> guide. </p>
-<p>This SDK includes only the Android {@sdkCurrentVersion} platform version for developing Android
-applications. With this platform, both the fully compliant Android {@sdkCurrentVersion} library
-and system image are provided. For more information about this platform version —
-features, applications included, localizations, API changes, and so on —
-see the <a href="{@docRoot}sdk/android-{@sdkCurrentVersion}.html">Android {@sdkCurrentVersion}
-Version Notes</a>.</p>
+<p><strong>0. Prepare your development computer</strong></p>
-<p>Although only one platform version is included in the SDK, you do not need to
-install a separate Android SDK for each platform version on which would like to develop
-applications. Once you install the SDK from this page, you can easily install
-additional Android platform versions using the Android SDK and AVD Manager.
-For more information about adding platform versions to your SDK,
-read <a href="{@docRoot}sdk/updating-sdk.html">Updating Your SDK</a>.</p>
+<p>Read the <a href="{@docRoot}sdk/requirements.html">System Requirements</a> document and make sure that your development computer meets the hardware and software requirements for the Android SDK. Install any additional software needed before downloading the Android SDK. In particular, if you plan to develop Android applications in the Eclipse IDE using the ADT Plugin (see below), make sure that you have the correct version of Eclipse installed.
+<p><strong>1. Download and install the SDK starter package</strong></p>
-<h4 id="system_images">SDK Add-Ons</h4>
+<p>Select a starter package from the table at the top of this page and download it to your development computer. To install the SDK, simply unpack the starter package to a safe location and then add the location to your PATH. </p>
-<p>An SDK add-on provides a development environment for an Android external
-library or a customized (but fully compliant) Android system image. This SDK
-includes the SDK add-ons listed below. The Android system API Level required by
-each add-on is noted.</p>
+<p><strong>2. Install the ADT Plugin for Eclipse</strong></p>
-<table style="margin-right:1em;" width="80%">
-<tr>
-<th><nobr>Add-On</nobr></th><th><nobr>API Level</nobr></th>
-<th>Notes</th><th>Description</th>
-</tr>
-<tr>
-<td width="5%"><nobr>Google APIs</nobr></td>
-<td width="5%">5</td>
-<td width="5%"> </td>
-<td>Includes the com.google.android.maps external library, a compliant
-Android 2.0 system image, a {@link android.location.Geocoder Geocoder}
-backend service implementation, documentation, and sample code. </td>
-</tr>
-</table>
+<p>If you are developing in Eclipse, set up a remote update site and install the Android Development Tools (ADT) plugin.</p>
+<p>For detailed instructions, see <a href="{@docRoot}sdk/eclipse-adt.html">Installing and Updating ADT</a>.</p>
-<h4 id="samples">Sample Code and Applications</h4>
+<p><strong>3. Add Android platforms to your SDK</strong></p>
-<p>You can look at a variety of sample applications in the <a
-href="{@docRoot}guide/samples/index.html">Dev Guide</a> and access the sample
-code itself in the <code><em><sdk></em>/platforms/<em><platform></em>/samples/</code>
-directory of the SDK package. Note that each platform version includes its own set of
-sample applications.</p>
+<p>Use the Android SDK and AVD Manager, included in the SDK starter package, to add one or more Android platforms (for example, Android 1.6 or Android 2.0) to your SDK. In most cases, you will want to download multiple platforms, so that you can build your application on the lowest version you want to support, but test against higher versions that you intend the application to run on. Information about each platform is available at left, under "Downloadable SDK Components."</p>
+<p>For more information about how to add platforms and other SDK components, see <a href="{@docRoot}sdk/adding-components.html">Adding SDK Components</a>.</p>
-<h4 id="documentation">Documentation</h4>
+<p><strong>4. Get the latest documentation</strong></p>
-<p>The SDK package includes a full set of local documentation. To view it, open
-the <code><em><sdk></em>/documentation.html</code> file in a web browser. If you
-are developing in an IDE such as Eclipse, you can also view the reference
-documentation directly in the IDE by hovering over methods and class names.</p>
+<p>If you develop while offline, use the Android SDK and AVD Manager to download the latest documentation package. The documentation covers all versions of the API and lets you filter out those versions that your application won't support. Once installed, the documentation is also available to you directly from the Eclipse IDE. </p>
-<p>The most current documentation is always available on the Android Developers
-site:</p>
+<p><strong>5. Download other SDK components</strong></p>
-<p style="margin-left:2em;"><a
-href="http://developer.android.com/index.html">http://developer.android.com/</a>
-</p>
+<p>You can use the Android SDK and AVD Manager to download other SDK components, such as the SDK add-ons. An SDK add-on provides a development environment for an Android external library or a customized Android system image. For example, the Google APIs Add-On lets you develop an application that takes advantage of the Google Maps external library. </p>
+<p><strong>6. Get started with an application project</strong></p>
+<p>Once you've set up your SDK, the next step is to start a new application project or move existing applications into the new SDK.</p>
+
+<p>If you are new to Android, you can use the <a href="{@docRoot}guide/tutorials/hello-world.html">Hello World</a> tutorial to get started quickly. Welcome!</p>
\ No newline at end of file
diff --git a/docs/html/sdk/installing.jd b/docs/html/sdk/installing.jd
new file mode 100644
index 0000000..f4d28b3
--- /dev/null
+++ b/docs/html/sdk/installing.jd
@@ -0,0 +1,378 @@
+page.title=Installing the Android SDK
+sdk.preview=0
+
+@jd:body
+
+<div id="qv-wrapper">
+<div id="qv">
+
+ <h2>In this document</h2>
+ <ol>
+ <li><a href="#Preparing">Prepare for Installation</a></li>
+ <li><a href="#Installing">Install the SDK</a></li>
+ <li><a href="#InstallingADT">Install the ADT Plugin for Eclipse</a></li>
+ <li><a href="#components">Add Platforms and Other SDK Components</a></li>
+ <li><a href="#sdkContents">Explore the SDK</a></li>
+ <li><a href="#NextSteps">Next Steps</a></li>
+ <li><a href="#troubleshooting">Troubleshooting</a></li>
+ </ol>
+
+<h2>See also</h2>
+ <ol>
+ <li><a href="{@docRoot}sdk/eclipse-adt.html">Installing ADT</a></li>
+ <li><a href="{@docRoot}sdk/adding-components.html">Adding SDK Components</a></li>
+ </ol>
+
+</div>
+</div>
+
+<p>This page describes how to install the Android SDK and set up your
+development environment for the first time.</p>
+
+<p>If you encounter any problems during installation, see the
+<a href="#InstallationNotes">Installation Notes</a> at the bottom of
+this page.</p>
+
+<h4>Updating?</h4>
+
+<p>If you are currently using the Android 1.6 SDK, you do not necessarily need
+to install the new SDK, since your existing SDK incudes the Android SDK and AVD
+Manager tool. To develop against the new Android 2.0 platform, for example, you
+could just download the updated SDK Tools (Revision 3) and the Android 2.0
+platform into your existing SDK.</p>
+
+<p>If you are using Android 1.5 SDK or older, you should install the new SDK as
+described in this document and move your application projects to the new
+environment. </p>
+
+<h2 id="Preparing">Prepare for Installation</h2>
+
+<p>Before you begin, take a moment to confirm that your development machine
+meets the <a href="requirements.html">System Requirements</a>.</p>
+
+<p>If you will be developing in Eclipse with the Android Development
+Tools (ADT) Plugin — the recommended path if you are new to
+Android — make sure that you have a suitable version of Eclipse
+installed on your computer (3.4 or newer is recommended). If you need
+to install Eclipse, you can download it from this location: </p>
+
+<p style="margin-left:2em;"><a href=
+"http://www.eclipse.org/downloads/">http://www.eclipse.org/downloads/</a></p>
+
+<p>A Java or RCP version of Eclipse is recommended. For Eclipse 3.5, the
+"Eclipse Classic" version is recommended.</p>
+
+<h2 id="Installing">Download and Install the SDK</h2>
+
+<p>Download the SDK package that is appropriate for your development computer.
+Unpack the Android SDK archive to a suitable location on your machine. By
+default, the SDK files are unpacked into a directory named
+<code>android-sdk-<machine-platform></code>. </p>
+
+<p>Make a note of the name and location of the unpacked SDK directory on your
+system — you will need to refer to the SDK directory later, when setting
+up the ADT plugin or when using the SDK tools.</p>
+
+<p>Optionally, you may want to add the location of the SDK's primary
+<code>tools</code> directory to your system <code>PATH</code>. The primary
+<code>tools/</code> directory is located at the root of the SDK folder. Adding
+<code>tools</code> to your path lets you run Android Debug Bridge (adb) and the
+other command line <a
+href="{@docRoot}guide/developing/tools/index.html">tools</a> without needing to
+supply the full path to the tools directory. </p>
+
+<ul>
+ <li>On Linux, edit your <code>~/.bash_profile</code> or <code>~/.bashrc</code> file. Look
+ for a line that sets the PATH environment variable and add the
+ full path to the <code>tools/</code> directory to it. If you don't
+ see a line setting the path, you can add one:</li>
+
+ <ul><code>export PATH=${PATH}:<em><your_sdk_dir></em>/tools</code></ul>
+
+ <li>On a Mac OS X, look in your home directory for <code>.bash_profile</code> and
+ proceed as for Linux. You can create the <code>.bash_profile</code> if
+ you haven't already set one up on your machine. </li>
+
+ <li>On Windows, right-click on My Computer, and select Properties.
+ Under the Advanced tab, hit the Environment Variables button, and in the
+ dialog that comes up, double-click on Path (under System Variables). Add the full path to the
+ <code>tools/</code> directory to the path. </li>
+ </ul>
+
+<p>If you will be using the Eclipse IDE as your development environment,
+the next section describes how to install the Android Development Tools (ADT) plugin and set up Eclipse.
+If you choose not to use Eclipse, you can
+develop Android applications in an IDE of your choice and then compile, debug and deploy using
+the tools included in the SDK (skip to <a href="#NextSteps">Next Steps</a>).</p>
+
+
+<h2 id="InstallingADT">Install the ADT Plugin for Eclipse</h2>
+
+<p>Android offers a custom plugin for the Eclipse IDE, called Android
+Development Tools (ADT), that is designed to give you a powerful,
+integrated environment in which to build Android applications. It
+extends the capabilites of Eclipse to let you quickly set up new Android
+projects, create an application UI, add components based on the Android
+Framework API, debug your applications using the Android SDK tools, and even export
+signed (or unsigned) APKs in order to distribute your application.</p>
+
+<p>In general, using Eclipse with ADT is a highly recommended approach to
+Android development and is the fastest way to get started. For complete
+information about how to install ADT, see
+<a href="{@docRoot}sdk/eclipse-adt.html">Installing and Updating ADT</a>.</p>
+
+<p>If you prefer to work in an IDE other than Eclipse, you do not need to
+install Eclipse or ADT, instead, you can directly use the SDK tools to build and
+debug your application.</p>
+
+<h2 id="components">Add Android Platforms and Other Components</h2>
+
+<p>Once you've downloaded and installed the SDK, you need to install SDK
+components in it. The SDK starter package includes a tool called Android SDK and
+AVD Manager that helps you see what SDK components are available and then install
+them into your SDK environment. The <a
+href="{@docRoot}sdk/adding-components.html">Adding SDK Components</a> document
+provides step-by-step instructions.</p>
+
+<p>There are several types of SDK components available:</p>
+
+<ul>
+<li><strong>SDK Tools</strong> (available pre-installed in the Android SDK
+package) — Contains the full set of SDK tools for developing, debugging,
+and testing your application code and UI. You can read about the tools in the <a
+href="{@docRoot}guide/developing/tools/index.html">Dev Guide</a> and access them
+in the <code><sdk>/tools/</code> directory. </li>
+
+<li><strong>Android platforms</strong> — An SDK platform component is
+available for every production Android platform deployable to Android-powered
+devices. Each platform component includes a fully compliant Android library and
+system image, sample code, emulator skins, and any version specific tools. For
+detailed information about each platform, see the overview documents available
+under the section "Downloadable SDK Components," at left. </li>
+
+<li><strong>SDK Add-Ons</strong> — SDK add-ons provide a development
+environment for specific Android external
+library or a customized (but fully compliant) Android system image. The Android
+SDK repository offers the Google APIs Add-On, which gives your application
+access to powerful mapping capabilities through the
+<code>com.google.android.maps</code> library. You can also add additional
+repositories, so that you can download other SDK add-ons, where available. </li>
+
+<li><strong>Documentation</strong> — Contains a local copy of the latest
+multiversion documentation for the Android framework API.
+</li>
+</ul>
+
+<p>To develop any application, even if you are following the <a
+href="{@docRoot}guide/tutorials/hello-world.html">Hello World</a> tutorial, you
+<strong>must download at least one Android platform</strong> into your SDK.
+Typically, you will want to download multiple platforms, including the version
+that you want to develop against and all other higher platforms. By downloading
+multiple platforms, you can test the forward-compatibility of your application
+by running it on different platforms in the Android emulator. </p>
+
+<p>For more information about adding components and additional repository sites,
+see the <a href="{@docRoot}sdk/adding-components.html">Adding SDK Components</a>.
+</p>
+
+
+<h2 id="sdkContents">Explore the SDK</h2>
+
+<p>Once you've installed the SDK and downloaded the platforms, documentation,
+and add-ons that you need, open the SDK directory and take a look at what's
+inside.</p>
+
+<p>The table below describes the full SDK directory contents, with components
+installed. </p>
+
+<table>
+<tr>
+<th colspan="3">Name</th><th>Description</th>
+</tr>
+<tr>
+<td colspan="3"><code>add-ons/</code></td>
+<td>Contains add-ons to the Android SDK development
+environment, which let you develop against external libraries that are available on some
+devices. </td>
+</tr>
+<tr>
+<td colspan="3"><code>docs/</code></td>
+<td>A full set of documentation in HTML format, including the Developer's Guide,
+API Reference, and other information. To read the documentation, load the
+file <code>offline.html</code> in a web browser.</td>
+</tr>
+<tr>
+<td colspan="3"><code>platforms/</code></td>
+<td>Contains a set of Android platform versions that you can develop
+applications against, each in a separate directory. </td>
+</tr>
+<tr>
+<td style="width:2em;border-bottom-color:white;"></td>
+<td colspan="2"><code><platform>/</code></td>
+<td>Platform version directory, for example "Android 1.6". All platform version
+directories contain a similar set of files and subdirectory structure.</td>
+</tr>
+
+<tr>
+<td style="width:2em;border-bottom-color:white;"> </td>
+<td style="width:2em;border-bottom-color:white;"></td>
+<td><code>data/</code></td>
+<td>Storage area for default fonts and resource definitions.</td>
+</tr>
+<tr>
+<td style="width:2em;border-bottom-color:white;"></td>
+<td style="width:2em;border-bottom-color:white;"></td>
+<td><code>images/</code></td>
+<td>Storage area for default disk images, including the Android system image,
+the default userdata image, the default ramdisk image, and more. The images
+are used in emulator sessions.</td>
+</tr>
+<tr>
+<td style="width:2em;border-bottom-color:white;"></td>
+<td style="width:2em;border-bottom-color:white;"></td>
+<td><code>samples/</code></td>
+<td>Contains a wide variety of sample applications that you can load as projects
+into your development environment, compile, and run on the emulator.</td>
+</tr>
+<tr>
+<td style="width:2em;border-bottom-color:white;"></td>
+<td style="width:2em;border-bottom-color:white;"></td>
+<td><code>skins/</code></td>
+<td>A set of emulator skins available for the platform version. Each skin is
+designed for a specific screen resolution.</td>
+</tr>
+<tr>
+<td style="width:2em;border-bottom-color:white;"></td>
+<td style="width:2em;border-bottom-color:white;"></td>
+<td><code>templates/</code></td>
+<td>Storage area for file templates used by the SDK development tools.</td>
+</tr>
+<tr>
+<td style="width:2em;border-bottom-color:white;"></td>
+<td style="width:2em;border-bottom-color:white;"></td>
+<td><code>tools/</code></td>
+<td>Any development tools that are specific to the platform version.</td>
+</tr>
+<tr>
+<td style="width:2em;"></td>
+<td style="width:2em;"></td>
+<td><code>android.jar</code></td>
+<td>The Android library used when compiling applications against this platform
+version.</td>
+</tr>
+<tr>
+<td colspan="3"><code>tools/</code></td>
+<td>Contains the set of development and profiling tools available to you, such
+as the emulator, the <code>android</code> tool, adb, ddms, and more.</td>
+</tr>
+<tr>
+<td colspan="3"><code>SDK Readme.txt</code></td>
+<td>A file that explains how to perform the initial setup of your SDK,
+including how to launch the Android SDK and AVD Manager tool on all
+platforms</td>
+</tr>
+<tr>
+<td colspan="3"><code>SDK Setup.exe</code></td>
+<td>For Windows SDK only. A shortcut that launches the Android SDK and AVD
+Manager tool, which you use to add components to your SDK. </td>
+</tr>
+<!--<tr>
+<td colspan="3"><code>documentation.html</code></td>
+<td>A file that loads the entry page for the local Android SDK
+documentation.</td>
+</tr>-->
+
+</table>
+
+<h2 id="NextSteps">Next Steps</h2>
+<p>Once you have completed installation, you are ready to
+begin developing applications. Here are a few ways you can get started: </p>
+
+<p><strong>Learn about Android</strong></p>
+<ul>
+ <li>Take a look at the <a href="{@docRoot}guide/index.html">Dev
+ Guide</a> and the types of information it provides</li>
+ <li>Read an introduction to Android as a platform in <a
+ href="{@docRoot}guide/basics/what-is-android.html">What is
+ Android?</a></li>
+ <li>Learn about the Android framework and how applications run on it in
+ <a href="{@docRoot}guide/topics/fundamentals.html">Application
+ Fundamentals</a></li>
+ <li>Take a look at the Android framework API specification in the <a
+ href="{@docRoot}reference/packages.html">Reference</a> tab</li>
+</ul>
+
+<p><strong>Explore the SDK</strong></p>
+<ul>
+ <li>Get an overview of the <a
+ href="{@docRoot}guide/developing/tools/index.html">development
+ tools</a> that are available to you</li>
+ <li>Read how to develop <a
+ href="{@docRoot}guide/developing/eclipse-adt.html">in Eclipse/ADT</a> or
+ <a href="{@docRoot}guide/developing/other-ide.html">in other IDEs</a>
+ </li>
+</ul>
+
+<p><strong>Explore some code</strong></p>
+<ul>
+ <li>Set up a <a href="{@docRoot}guide/tutorials/hello-world.html">Hello
+ World application</a> (highly recommended, especially for Eclipse users)</li>
+ <li>Follow the <a href="{@docRoot}guide/tutorials/notepad/index.html">
+ Notepad Tutorial</a> to build a full Android application </li>
+ <li>Create a new project for one of the other sample applications
+ included in <code><em><sdk></em>/platforms/<em><platform></em>/samples</code>,
+ then compile and run it in your development environment</li>
+</ul>
+
+<p><strong>Visit the Android developer groups</strong></p>
+<ul>
+ <li>Take a look at the <a
+ href="{@docRoot}community/index.html">Community</a> tab to see a list of
+ Android developers groups. In particular, you might want to look at the
+ <a href="http://groups.google.com/group/android-developers">Android
+ Developers</a> group to get a sense for what the Android developer
+ community is like.</li>
+</ul>
+
+
+<h2 id="troubleshooting">Installation Troubleshooting</h2>
+
+<h3>Ubuntu Linux Notes</h3>
+
+<ul>
+ <li>If you need help installing and configuring Java on your
+ development machine, you might find these resources helpful:
+ <ul>
+ <li><a href="https://help.ubuntu.com/community/Java">https://help.ubuntu.com/community/Java </a></li>
+ <li><a href="https://help.ubuntu.com/community/Java">https://help.ubuntu.com/community/JavaInstallation</a></li>
+ </ul>
+ </li>
+ <li>Here are the steps to install Java and Eclipse, prior to installing
+ the Android SDK and ADT Plugin.
+ <ol>
+ <li>If you are running a 64-bit distribution on your development
+ machine, you need to install the <code>ia32-libs</code> package using
+ <code>apt-get:</code>:
+ <pre>apt-get install ia32-libs</pre>
+ </li>
+ <li>Next, install Java: <pre>apt-get install sun-java6-bin</pre></li>
+ <li>The Ubuntu package manager does not currently offer an Eclipse 3.3
+ version for download, so we recommend that you download Eclipse from
+ eclipse.org (<a
+ href="http://www.eclipse.org/downloads/">http://www.eclipse.org/
+ downloads/</a>). A Java or RCP version of Eclipse is recommended.</li>
+ <li>Follow the steps given in previous sections to install the SDK
+ and the ADT plugin. </li>
+ </ol>
+ </li>
+</ul>
+
+<h3>Other Linux Notes</h3>
+
+<ul>
+ <li>If JDK is already installed on your development computer, please
+ take a moment to make sure that it meets the version requirements listed
+ in the <a href="requirements.html">System Requirements</a>.
+ In particular, note that some Linux distributions may include JDK 1.4 or Gnu
+ Compiler for Java, both of which are not supported for Android development.</li>
+</ul>
\ No newline at end of file
diff --git a/docs/html/sdk/older_releases.jd b/docs/html/sdk/older_releases.jd
index febccd04..0ecee3c 100644
--- a/docs/html/sdk/older_releases.jd
+++ b/docs/html/sdk/older_releases.jd
@@ -7,7 +7,7 @@
only.</p>
<p>If you are just getting started developing on Android, make sure that you
-are using the <a href="{@docRoot}sdk/{@sdkCurrent}/index.html">most current SDK available</a>,
+are using the <a href="{@docRoot}sdk/index.html">most current SDK available</a>,
to ensure that your applications will be compatible with the latest
Android-powered devices.</p>
diff --git a/docs/html/sdk/sdk_toc.cs b/docs/html/sdk/sdk_toc.cs
index b75fe9b..8b55aad 100644
--- a/docs/html/sdk/sdk_toc.cs
+++ b/docs/html/sdk/sdk_toc.cs
@@ -1,9 +1,9 @@
<?cs if:!sdk.redirect ?>
-<ul>
- <li><?cs
- if:android.whichdoc == "online" ?>
+<ul><?cs
+ if:android.whichdoc == "online" ?>
+ <li>
<h2>
- <span class="en">Current SDK Release</span>
+ <span class="en">Android SDK Starter Package</span>
<span style="display:none" class="de">Aktuelle SDK-Version</span>
<span style="display:none" class="es">Versión actual del SDK</span>
<span style="display:none" class="fr">Version actuelle du SDK</span>
@@ -23,7 +23,7 @@
<span style="display:none" class="zh-CN">下载</span>
<span style="display:none" class="zh-TW">下載</span>
</a></li>
- <li><a href="<?cs var:toroot ?>sdk/<?cs var:sdk.current ?>/installing.html">
+ <li><a href="<?cs var:toroot ?>sdk/installing.html">
<span class="en">Installing</span>
<span style="display:none" class="de">Installieren</span>
<span style="display:none" class="es">Instalación</span>
@@ -33,46 +33,13 @@
<span style="display:none" class="zh-CN">安装</span>
<span style="display:none" class="zh-TW">安裝</span>
</a></li>
- <li><a href="<?cs var:toroot ?>sdk/updating-sdk.html">Updating Your SDK</a></li>
- <li><a href="<?cs var:toroot ?>sdk/requirements.html">System Requirements</a></li>
- </ul><?cs
- else ?> <?cs # else "if NOT online" ... ?>
- <h2>
- <span class="en">Android SDK</span>
- </h2><?cs
- /if ?> <?cs # end of "if/else online" ... ?>
- <ul>
- <li><a href="<?cs var:toroot ?>sdk/terms.html">SDK Terms and Conditions</a></li>
- <li><a href="<?cs var:toroot ?>sdk/RELEASENOTES.html">SDK Release Notes</a></li>
+
</ul>
</li><?cs
- if:android.whichdoc == "online" ?>
+ /if ?>
<li>
<h2>
- <span class="en">System Image Version Notes</span>
- <span style="display:none" class="de">Versionshinweise zum Systemabbild</span>
- <span style="display:none" class="es">Notas de la versión de System Image</span>
- <span style="display:none" class="fr">Notes de version de l'image système</span>
- <span style="display:none" class="it">Note sulla versione dell'immagine <br />di sistema</span>
- <span style="display:none" class="ja">システム イメージ バージョンに<br />関する注意事項</span>
- <span style="display:none" class="zh-CN">系统图片版本说明</span>
- <span style="display:none" class="zh-TW">系統影像版本資訊</span>
- </h2>
- <ul>
- <li><a href="<?cs var:toroot ?>sdk/android-2.0.html">Android 2.0 Version Notes</a></li>
- <li><a href="<?cs var:toroot ?>sdk/android-1.6.html">Android 1.6 Version Notes</a></li>
- <!-- <li class="toggle-list"><div><a href="#" onclick="toggle(this.parentNode.parentNode,true); return false;">More</a></div>
- <ul> -->
- <li><a href="<?cs var:toroot ?>sdk/android-1.5.html">Android 1.5 Version Notes</a></li>
- <li><a href="<?cs var:toroot ?>sdk/android-1.1.html">Android 1.1 Version Notes</a></li>
- <!-- </ul> -->
- </li>
- </ul>
- </li>
-<!--
- <li>
- <h2>
- <span class="en">Developer Tools</span>
+ <span class="en">Downloadable SDK Components</span>
<span style="display:none" class="de"></span>
<span style="display:none" class="es"></span>
<span style="display:none" class="fr"></span>
@@ -82,37 +49,94 @@
<span style="display:none" class="zh-TW"></span>
</h2>
<ul>
- <li><a href="<?cs var:toroot ?>sdk/tools.html">Tools Revision 3</a></li>
- <li><a href="<?cs var:toroot ?>sdk/adt.html">"ADT Plugin for Eclipse, 0.9.4</a></li>
+ <li><a href="<?cs var:toroot ?>sdk/adding-components.html">
+ <span class="en">Adding SDK Components</span>
+ <span style="display:none" class="de"></span>
+ <span style="display:none" class="es"></span>
+ <span style="display:none" class="fr"></span>
+ <span style="display:none" class="it"></span>
+ <span style="display:none" class="ja"></span>
+ <span style="display:none" class="zh-CN"></span>
+ <span style="display:none" class="zh-TW"></span></a>
+ </li>
+ </ul>
+ <ul>
+ <li><a href="<?cs var:toroot ?>sdk/android-2.0.html">Android 2.0 Platform</a>
+ <span class="new">new!</span>
+ </li>
+ <li><a href="<?cs var:toroot ?>sdk/android-1.6.html">Android 1.6 Platform</a></li>
+ <li><a href="<?cs var:toroot ?>sdk/android-1.5.html">Android 1.5 Platform</a></li>
+ <li class="toggle-list">
+ <div><a href="#" onclick="toggle(this.parentNode.parentNode,true); return false;">Older Platforms</a></div>
+ <ul>
+ <li><a href="<?cs var:toroot ?>sdk/android-1.1.html">Android 1.1 Platform</a>
+ </li>
+ </ul>
+ </li>
+ </ul>
+ <ul>
+ <li><a href="<?cs var:toroot ?>sdk/tools-notes.html">SDK Tools, Revision 3</a>
+ <span class="new">new!</span>
+ </li>
</ul>
</li>
--->
<li>
- <h2>Native Development Tools</h2>
+ <h2>
+ <span class="en">ADT Plugin for Eclipse</span>
+ <span style="display:none" class="de"></span>
+ <span style="display:none" class="es"></span>
+ <span style="display:none" class="fr"></span>
+ <span style="display:none" class="it"></span>
+ <span style="display:none" class="ja"></span>
+ <span style="display:none" class="zh-CN"></span>
+ <span style="display:none" class="zh-TW"></span>
+ </h2>
+ <ul>
+ <li><a href="<?cs var:toroot ?>sdk/eclipse-adt.html">Installing and Updating
+ <span style="display:none" class="de"></span>
+ <span style="display:none" class="es"></span>
+ <span style="display:none" class="fr"></span>
+ <span style="display:none" class="it"></span>
+ <span style="display:none" class="ja"></span>
+ <span style="display:none" class="zh-CN"></span>
+ <span style="display:none" class="zh-TW"></span></a>
+ </li>
+ <li><a href="<?cs var:toroot ?>sdk/adt-notes.html">ADT <?cs var:adt.zip.version ?> Notes</span></a>
+ </li>
+ </ul>
+ </li>
+ <li>
+ <h2><span class="en">Native Development Tools</span>
+ <span style="display:none" class="de"></span>
+ <span style="display:none" class="es"></span>
+ <span style="display:none" class="fr"></span>
+ <span style="display:none" class="it"></span>
+ <span style="display:none" class="ja"></span>
+ <span style="display:none" class="zh-CN"></span>
+ <span style="display:none" class="zh-TW"></span>
+ </h2>
<ul>
<li><a href="<?cs var:toroot ?>sdk/ndk/1.6_r1/index.html">Android 1.6 NDK, r1</a></li>
</ul>
</li>
<li>
- <h2>
- <span class="en">Previous SDK Releases</span>
- <span style="display:none" class="de">Frühere SDK-Releases</span>
- <span style="display:none" class="es">Versiones anteriores del SDK</span>
- <span style="display:none" class="fr">Anciennes versions du SDK</span>
- <span style="display:none" class="it">Release SDK precedenti</span>
- <span style="display:none" class="ja">SDK の過去のリリース</span>
- <span style="display:none" class="zh-CN">以前的 SDK 版本</span>
- <span style="display:none" class="zh-TW">較舊的 SDK 發行版本</span>
+ <h2>
+ <span class="en">More Information</span>
+ <span style="display:none" class="de"></span>
+ <span style="display:none" class="es"></span>
+ <span style="display:none" class="fr"></span>
+ <span style="display:none" class="it"></span>
+ <span style="display:none" class="ja"></span>
+ <span style="display:none" class="zh-CN"></span>
+ <span style="display:none" class="zh-TW"></span>
</h2>
<ul>
- <li><a href="<?cs var:toroot ?>sdk/1.6_r1/index.html">Android 1.6 SDK, r1</a></li>
- <li><a href="<?cs var:toroot ?>sdk/1.5_r3/index.html">Android 1.5 SDK, r3</a></li>
- <li><a href="<?cs var:toroot ?>sdk/1.1_r1/index.html">Android 1.1 SDK, r1</a></li>
- <li><a href="<?cs var:toroot ?>sdk/1.0_r2/index.html">Android 1.0 SDK, r2</a></li>
- <li><a href="<?cs var:toroot ?>sdk/older_releases.html">Other Releases</a></li>
+ <li><a href="<?cs var:toroot ?>sdk/requirements.html">SDK System Requirements</a></li>
+ <li><a href="<?cs var:toroot ?>sdk/terms.html">SDK Terms and Conditions</a></li>
+ <li><a href="<?cs var:toroot ?>sdk/RELEASENOTES.html">SDK Release Notes</a></li>
</ul>
- </li><?cs
- /if ?> <?cs # end of "if online" ?>
+ </li>
+
</ul>
<script type="text/javascript">
diff --git a/docs/html/sdk/tools-notes.jd b/docs/html/sdk/tools-notes.jd
new file mode 100644
index 0000000..abb9c96
--- /dev/null
+++ b/docs/html/sdk/tools-notes.jd
@@ -0,0 +1,62 @@
+page.title=SDK Tools Notes
+@jd:body
+
+<p>SDK Tools is a downloadable component for the Android SDK. It
+includes the complete set of development and debugging tools for the Android
+SDK.</p>
+
+<p>To install SDK Tools in your SDK environment (and replace the
+existing tools), use the Android SDK and AVD Manager. For more information, see
+<a href="{@docRoot}sdk/adding-components.html">Adding SDK Components</a>. </p>
+
+<p>This document provides version-specific information about SDK Tools
+releases. To keep up to date on new releases, make sure that you view this page
+at <a
+href="http://developer.android.com/sdk/tools-notes.html">http://developer.
+android.com/sdk/tools-notes.html</a>.</p>
+
+<h2 id="3">SDK Tools, Revision 3</h2>
+
+<p>SDK Tools 3 provides several new features for developers and includes
+fixes for several tools issues, as described below. </p>
+
+<h3>Dependencies</h3>
+
+<p>SDK Tools 3 is compatible with ADT 0.9.4 and later, but not
+compatible with earlier versions. If you are developing in Eclipse with ADT, you
+<strong>must</strong> update your ADT plugin to version 0.9.4 or higher if you
+install SDK Tools 3 in your SDK. </p>
+
+<h3>Android tool</h3>
+<ul>
+<li>Adds new <code>android create test-project</code> and <code>android update
+test-project</code> commands to allow for greater flexibility in the location of the
+main and test projects.</li>
+</ul>
+
+<h3>DDMS</h3>
+<ul>
+<li>Adds a button to dump HPROF file for running appplications (app must be able
+to write to the sdcard).</li>
+<li>Button to start/stop profiling of a running application (app must be able to
+write to the sdcard). Upon stop, Traceview will automatically be launched to
+display the trace.</li>
+<li>Fixed DDMS, Traceview, and the AVD Mananger/SDK Updater to run on Mac OS X
+10.6.</li>
+<li>Fixed screenshot support for devices running 32-bit framebuffer.</li>
+</ul>
+
+<h3>Android SDK and AVD Manager</h3>
+<ul>
+<li>Provides a new UI that lets you set options for controlling
+the emulator skin, screen size/density, and scale factor used when launching
+an AVD.</li>
+<li>Provides improved AVD creation UI, which lets you customize the hardware
+properties of your AVDs.</li>
+<li>Now enforces dependencies between platforms and tools components, and
+between SDK add-ons and platforms.</li>
+</ul>
+
+
+
+
diff --git a/docs/html/sdk/updating-sdk.jd b/docs/html/sdk/updating-sdk.jd
deleted file mode 100644
index db1e8db..0000000
--- a/docs/html/sdk/updating-sdk.jd
+++ /dev/null
@@ -1,181 +0,0 @@
-page.title=Updating Your SDK
-@jd:body
-
-
-<div id="qv-wrapper">
-<div id="qv">
-<h2>Quick view</h2>
-<ul>
- <li>Use the Android SDK and AVD Manager to
- keep your SDK up-to-date without having to install new
- SDK directories.</li>
- <li>The Android SDK and AVD Manager is available only with the
- Android 1.6 SDK or later.</li>
- <li>The Eclipse ADT plugin may require an update when installing
- new tools or system images.</li>
-</ul>
-
-<h2>In this document</h2>
-<ol>
- <li><a href="#InstallingComponents">Installing SDK Components</a>
- <ol>
- <li><a href="#AddingSites">Adding New Sites</a></li>
- </ol>
- </li>
- <li><a href="#UpdatingAdt">Updating the Eclipse ADT Plugin</a></li>
-</ol>
-</div>
-</div>
-
-
-<p>Updating your Android SDK is fast and easy. To perform an update, use the
-<strong>Android SDK and AVD Manager</strong>
-to install or update the individual SDK components that you need.</p>
-
-<p>It only takes a couple of clicks to install
-individual versions of the Android platform, new development tools, new documentation, and
-SDK add-ons. The new SDK components are automatically installed into your existing SDK
-directory, so you don't need to update your development environment to specify a
-new SDK location.</p>
-
-<p>Because each version of the Android platform can be installed as an individual component
-of your SDK, you can customize your development environment to the Android platforms
-you are targetting. Testing your app on multiple versions of
-the platform is very important in order to successfully operate on as many devices as possible.
-Be sure to install each version of the Android platform with which your app is compatible, then test
-your apps on <a href="{@docRoot}guide/developing/tools/avd.html">AVDs</a> that run each platform.</p>
-
-<p>If you develop applications using Eclipse, you may also need to update
-your ADT plugin when you update your development tools or in order to compile
-against a new version of the platform. See the
-<a href="{@docRoot}sdk/RELEASENOTES.html">SDK Release Notes</a> for ADT compatibility.</p>
-
-
-
-<h2 id="InstallingComponents">Installing SDK Components</h2>
-
-<p>Use the Android SDK and AVD Manager to install new SDK components.
-To launch the SDK and AVD Manager:</p>
-<ul>
- <li>Execute the <a
- href="{@docRoot}guide/developing/tools/othertools.html#android">{@code android}</a> tool
- command with no options.</li>
- <li>Or from Eclipse, select <strong>Window</strong> ><strong>Android SDK and AVD
- Manager</strong>.</li>
-</ul>
-
-<img src="{@docRoot}images/sdk_manager_packages.png" alt="" style="float:right" />
-
-<p>When a new platform version, add-on, set of development tools or
-documentation becomes available, you can quickly
-install them into your existing Android SDK:</p>
-
-<ol>
- <li>Select <strong>Available Components</strong> in the left panel.
- This will reveal all components currently available for download.</li>
- <li>Select the components you'd like to install and click <strong>Install
- Selected</strong>.</li>
- <li>Verify and accept the components you want and click <strong>Install
- Accepted</strong>. The components will now be installed into your existing
- Android SDK directories.</li>
-</ol>
-
-<p>New platforms are automatically saved into the
-<code><em><sdk>/</em>platforms/</code> directory of your SDK;
-new add-ons are saved in the <code><em><sdk>/</em>add-ons/</code>
-directory; and new documentation is saved in the existing
-<code><em><sdk>/</em>docs/</code> directory (old docs are replaced).</p>
-
-<p class="note"><strong>Tip:</strong>
-Use the "Display updates only" checkbox to show only the components
-you do not have.</p>
-
-
-<h3 id="AddingSites">Adding New Sites</h3>
-
-<p>By default, <strong>Available Components</strong> only shows
-the Google repository for Android SDK components and Google API
-add-ons. You can add additional sites that host
-Android SDK add-ons, then download SDK add-ons from them.</p>
-
-<p>For example, a mobile carrier or hardware manufacturer may offer additional
-API libraries that are supported by their own Android-powered devices.
-In order to develop using their libraries, you must install their
-Android SDK add-on.
-If the carrier or manufacturer has hosted an add-on repository file on their
-web site, add their site to the SDK and AVD Manager:</p>
-<ol>
- <li>Select <strong>Available Components</strong> in the left panel.</li>
- <li>Click <strong>Add Site</strong> and enter the URL of the
-{@code repository.xml} file. Click <strong>OK</strong>.</li>
-</ol>
-<p>Any SDK components available from the site will now be listed under
-<strong>Available Components</strong>.</p>
-
-
-
-
-
-<h2 id="UpdatingAdt">Updating the Eclipse ADT Plugin</h2>
-
-<p>You may need to update your ADT plugin depending on what version of the
-development tools you are using and what version of the Android platform you are
-compiling against. It's easy to update your plugin through Eclipse and we
-recommend that you stay up-to-date in order to avoid any problems.</p>
-
-<p>With the latest version of ADT, you can still compile existing applications against
-previous versions of the Android platform. However, the latest ADT may
-not work with a previous version of the development tools. See the
-Android development tools release notes for compatibility information.</p>
-
-<p>To update ADT, follow the procedure below for your respective version of Eclipse.</p>
-
-<table style="font-size:100%">
-<tr><th>Eclipse 3.4 (Ganymede)</th><th>Eclipse 3.5 (Galileo)</th></tr>
-<tr>
-<td width="50%">
-<!-- 3.4 steps -->
-<ol>
- <li>Select <strong>Help</strong> > <strong>Software Updates</strong>.</li>
- <li>Select the <strong>Available Software</strong> tab.</li>
- <li>Select the checkboxes next to Android DDMS and Android Developer Tools,
- then click <strong>Update</strong>.</li>
- <li>In the resulting Available Updates dialog, ensure that both Android DDMS
- and Android Development Tools are selected, then click
- <strong>Next</strong>.</li>
- <li>Read and accept the license agreement and then click <strong>Finish</strong>.
- This will download and install the latest version of Android DDMS and
- Android Development Tools.</li>
- <li>Restart Eclipse.</li>
-</ol>
-</td>
-<td>
-<!-- 3.5 steps -->
-<ol>
- <li>Select <strong>Help</strong> > <strong>Check for Updates</strong>. </li>
- <li>In the resulting Available Updates dialog, locate the Android DDMS and
- Android Development Tools features in the list and ensure that the checkboxes
- next to them are selected. Click <strong>Next</strong>.
- <p>If the Available Updates dialog does not list Android DDMS and Android
- Development tools, make sure that you have set up a remote update site
- for them, as described in
- <a href="installing.html#InstallingADT">Installing the ADT Plugin</a>.
- </p></li>
- <li>In the Update Details dialog, click <strong>Next</strong>.</li>
- <li>Read and accept the license agreement and then click <strong>Finish</strong>.
- This will download and install the latest version of Android DDMS and
- Android Development Tools.</li>
- <li>Restart Eclipse.</li>
-</ol>
-</td>
-</tr>
-</table>
-
-<p>If you encounter problems with this update procedure, try performing a fresh
-installation. Fully remove your existing ADT Plugin as described in <a
-href="{@docRoot}sdk/1.5_r3/upgrading.html#uninstallAdt">Uninstall your previous
-ADT plugin</a> and then follow the guide to <a
-href="{@docRoot}sdk/{@sdkCurrent}/installing.html#InstallingADT">Installing the ADT Plugin for
-Eclipse</a>.</p>
-
-
diff --git a/include/media/stagefright/MediaExtractor.h b/include/media/stagefright/MediaExtractor.h
index 67e45bd..4d6b989 100644
--- a/include/media/stagefright/MediaExtractor.h
+++ b/include/media/stagefright/MediaExtractor.h
@@ -33,7 +33,12 @@
virtual size_t countTracks() = 0;
virtual sp<MediaSource> getTrack(size_t index) = 0;
- virtual sp<MetaData> getTrackMetaData(size_t index) = 0;
+
+ enum GetTrackMetaDataFlags {
+ kIncludeExtensiveMetaData = 1
+ };
+ virtual sp<MetaData> getTrackMetaData(
+ size_t index, uint32_t flags = 0) = 0;
protected:
MediaExtractor() {}
diff --git a/include/media/stagefright/MetaData.h b/include/media/stagefright/MetaData.h
index d48ea41..c2d8f98 100644
--- a/include/media/stagefright/MetaData.h
+++ b/include/media/stagefright/MetaData.h
@@ -46,6 +46,7 @@
kKeyDecoderComponent = 'decC', // cstring
kKeyBufferID = 'bfID',
kKeyMaxInputSize = 'inpS',
+ kKeyThumbnailTime = 'thbT', // int64_t (usecs)
};
enum {
diff --git a/include/media/stagefright/OMXCodec.h b/include/media/stagefright/OMXCodec.h
index dfc902e..d0f4f17 100644
--- a/include/media/stagefright/OMXCodec.h
+++ b/include/media/stagefright/OMXCodec.h
@@ -30,11 +30,15 @@
struct OMXCodec : public MediaSource,
public MediaBufferObserver {
+ enum CreationFlags {
+ kPreferSoftwareCodecs = 1,
+ };
static sp<OMXCodec> Create(
const sp<IOMX> &omx,
const sp<MetaData> &meta, bool createEncoder,
const sp<MediaSource> &source,
- const char *matchComponentName = NULL);
+ const char *matchComponentName = NULL,
+ uint32_t flags = 0);
static void setComponentRole(
const sp<IOMX> &omx, IOMX::node_id node, bool isEncoder,
@@ -207,6 +211,14 @@
void dumpPortStatus(OMX_U32 portIndex);
+ static uint32_t getComponentQuirks(const char *componentName);
+
+ static void findMatchingCodecs(
+ const char *mime,
+ bool createEncoder, const char *matchComponentName,
+ uint32_t flags,
+ Vector<String8> *matchingCodecs);
+
OMXCodec(const OMXCodec &);
OMXCodec &operator=(const OMXCodec &);
};
diff --git a/media/libmedia/ToneGenerator.cpp b/media/libmedia/ToneGenerator.cpp
index 3729eb3..91d0d00 100644
--- a/media/libmedia/ToneGenerator.cpp
+++ b/media/libmedia/ToneGenerator.cpp
@@ -903,10 +903,11 @@
if (mState == TONE_STOPPED) {
LOGV("Start waiting for previous tone to stop");
- lStatus = mWaitCbkCond.waitRelative(mLock, seconds(1));
+ lStatus = mWaitCbkCond.waitRelative(mLock, seconds(3));
if (lStatus != NO_ERROR) {
LOGE("--- start wait for stop timed out, status %d", lStatus);
mState = TONE_IDLE;
+ mLock.unlock();
return lResult;
}
}
@@ -921,7 +922,7 @@
mLock.lock();
if (mState == TONE_STARTING) {
LOGV("Wait for start callback");
- lStatus = mWaitCbkCond.waitRelative(mLock, seconds(1));
+ lStatus = mWaitCbkCond.waitRelative(mLock, seconds(3));
if (lStatus != NO_ERROR) {
LOGE("--- Immediate start timed out, status %d", lStatus);
mState = TONE_IDLE;
@@ -934,7 +935,7 @@
} else {
LOGV("Delayed start\n");
mState = TONE_RESTARTING;
- lStatus = mWaitCbkCond.waitRelative(mLock, seconds(1));
+ lStatus = mWaitCbkCond.waitRelative(mLock, seconds(3));
if (lStatus == NO_ERROR) {
if (mState != TONE_IDLE) {
lResult = true;
@@ -973,7 +974,7 @@
if (mState == TONE_PLAYING || mState == TONE_STARTING || mState == TONE_RESTARTING) {
mState = TONE_STOPPING;
LOGV("waiting cond");
- status_t lStatus = mWaitCbkCond.waitRelative(mLock, seconds(1));
+ status_t lStatus = mWaitCbkCond.waitRelative(mLock, seconds(3));
if (lStatus == NO_ERROR) {
LOGV("track stop complete, time %d", (unsigned int)(systemTime()/1000000));
} else {
@@ -1087,6 +1088,7 @@
lpToneGen->mLock.lock();
+
// Update pcm frame count and end time (current time at the end of this process)
lpToneGen->mTotalSmp += lReqSmp;
diff --git a/media/libmediaplayerservice/StagefrightMetadataRetriever.cpp b/media/libmediaplayerservice/StagefrightMetadataRetriever.cpp
index c069128..fc4f2c5 100644
--- a/media/libmediaplayerservice/StagefrightMetadataRetriever.cpp
+++ b/media/libmediaplayerservice/StagefrightMetadataRetriever.cpp
@@ -86,7 +86,7 @@
LOGV("captureFrame");
if (mExtractor.get() == NULL) {
- LOGE("no extractor.");
+ LOGV("no extractor.");
return NULL;
}
@@ -104,14 +104,17 @@
}
if (i == n) {
- LOGE("no video track found.");
+ LOGV("no video track found.");
return NULL;
}
+ sp<MetaData> trackMeta = mExtractor->getTrackMetaData(
+ i, MediaExtractor::kIncludeExtensiveMetaData);
+
sp<MediaSource> source = mExtractor->getTrack(i);
if (source.get() == NULL) {
- LOGE("unable to instantiate video track.");
+ LOGV("unable to instantiate video track.");
return NULL;
}
@@ -119,10 +122,11 @@
sp<MediaSource> decoder =
OMXCodec::Create(
- mClient.interface(), meta, false, source);
+ mClient.interface(), meta, false, source,
+ NULL, OMXCodec::kPreferSoftwareCodecs);
if (decoder.get() == NULL) {
- LOGE("unable to instantiate video decoder.");
+ LOGV("unable to instantiate video decoder.");
return NULL;
}
@@ -132,6 +136,12 @@
// Read one output buffer, ignore format change notifications
// and spurious empty buffers.
+ MediaSource::ReadOptions options;
+ int64_t thumbNailTime;
+ if (trackMeta->findInt64(kKeyThumbnailTime, &thumbNailTime)) {
+ options.setSeekTo(thumbNailTime);
+ }
+
MediaBuffer *buffer = NULL;
status_t err;
do {
@@ -139,20 +149,21 @@
buffer->release();
buffer = NULL;
}
- err = decoder->read(&buffer);
+ err = decoder->read(&buffer, &options);
+ options.clearSeekTo();
} while (err == INFO_FORMAT_CHANGED
|| (buffer != NULL && buffer->range_length() == 0));
if (err != OK) {
CHECK_EQ(buffer, NULL);
- LOGE("decoding frame failed.");
+ LOGV("decoding frame failed.");
decoder->stop();
return NULL;
}
- LOGI("successfully decoded video frame.");
+ LOGV("successfully decoded video frame.");
meta = decoder->getFormat();
diff --git a/media/libstagefright/AMRExtractor.cpp b/media/libstagefright/AMRExtractor.cpp
index 1660351..0d1e6d7 100644
--- a/media/libstagefright/AMRExtractor.cpp
+++ b/media/libstagefright/AMRExtractor.cpp
@@ -18,7 +18,8 @@
#define LOG_TAG "AMRExtractor"
#include <utils/Log.h>
-#include <media/stagefright/AMRExtractor.h>
+#include "include/AMRExtractor.h"
+
#include <media/stagefright/DataSource.h>
#include <media/stagefright/MediaBufferGroup.h>
#include <media/stagefright/MediaDebug.h>
@@ -86,7 +87,7 @@
return new AMRSource(mDataSource, mIsWide);
}
-sp<MetaData> AMRExtractor::getTrackMetaData(size_t index) {
+sp<MetaData> AMRExtractor::getTrackMetaData(size_t index, uint32_t flags) {
if (mInitCheck != OK || index != 0) {
return NULL;
}
diff --git a/media/libstagefright/DataSource.cpp b/media/libstagefright/DataSource.cpp
index daac539..933c2f6 100644
--- a/media/libstagefright/DataSource.cpp
+++ b/media/libstagefright/DataSource.cpp
@@ -14,11 +14,12 @@
* limitations under the License.
*/
-#include <media/stagefright/AMRExtractor.h>
+#include "include/AMRExtractor.h"
+#include "include/MP3Extractor.h"
+#include "include/MPEG4Extractor.h"
+
#include <media/stagefright/DataSource.h>
#include <media/stagefright/MediaErrors.h>
-#include <media/stagefright/MP3Extractor.h>
-#include <media/stagefright/MPEG4Extractor.h>
#include <utils/String8.h>
namespace android {
diff --git a/media/libstagefright/MP3Extractor.cpp b/media/libstagefright/MP3Extractor.cpp
index b7dd9ba..82b3db7 100644
--- a/media/libstagefright/MP3Extractor.cpp
+++ b/media/libstagefright/MP3Extractor.cpp
@@ -18,8 +18,9 @@
#define LOG_TAG "MP3Extractor"
#include <utils/Log.h>
+#include "include/MP3Extractor.h"
+
#include <media/stagefright/DataSource.h>
-#include <media/stagefright/MP3Extractor.h>
#include <media/stagefright/MediaBuffer.h>
#include <media/stagefright/MediaBufferGroup.h>
#include <media/stagefright/MediaDebug.h>
@@ -393,7 +394,7 @@
mMeta, mDataSource, mFirstFramePos, mFixedHeader);
}
-sp<MetaData> MP3Extractor::getTrackMetaData(size_t index) {
+sp<MetaData> MP3Extractor::getTrackMetaData(size_t index, uint32_t flags) {
if (mFirstFramePos < 0 || index != 0) {
return NULL;
}
diff --git a/media/libstagefright/MPEG4Extractor.cpp b/media/libstagefright/MPEG4Extractor.cpp
index da714f8..f174516 100644
--- a/media/libstagefright/MPEG4Extractor.cpp
+++ b/media/libstagefright/MPEG4Extractor.cpp
@@ -17,6 +17,7 @@
#define LOG_TAG "MPEG4Extractor"
#include <utils/Log.h>
+#include "include/MPEG4Extractor.h"
#include "include/SampleTable.h"
#include <arpa/inet.h>
@@ -27,7 +28,6 @@
#include <string.h>
#include <media/stagefright/DataSource.h>
-#include <media/stagefright/MPEG4Extractor.h>
#include <media/stagefright/MediaBuffer.h>
#include <media/stagefright/MediaBufferGroup.h>
#include <media/stagefright/MediaDebug.h>
@@ -179,7 +179,8 @@
return n;
}
-sp<MetaData> MPEG4Extractor::getTrackMetaData(size_t index) {
+sp<MetaData> MPEG4Extractor::getTrackMetaData(
+ size_t index, uint32_t flags) {
status_t err;
if ((err = readMetaData()) != OK) {
return NULL;
@@ -199,6 +200,25 @@
return NULL;
}
+ if ((flags & kIncludeExtensiveMetaData)
+ && !track->includes_expensive_metadata) {
+ track->includes_expensive_metadata = true;
+
+ const char *mime;
+ CHECK(track->meta->findCString(kKeyMIMEType, &mime));
+ if (!strncasecmp("video/", mime, 6)) {
+ uint32_t sampleIndex;
+ uint32_t sampleTime;
+ if (track->sampleTable->findThumbnailSample(&sampleIndex) == OK
+ && track->sampleTable->getDecodingTime(
+ sampleIndex, &sampleTime) == OK) {
+ track->meta->setInt64(
+ kKeyThumbnailTime,
+ ((int64_t)sampleTime * 1000000) / track->timescale);
+ }
+ }
+ }
+
return track->meta;
}
@@ -353,6 +373,7 @@
mLastTrack = track;
track->meta = new MetaData;
+ track->includes_expensive_metadata = false;
track->timescale = 0;
track->sampleTable = new SampleTable(mDataSource);
track->meta->setCString(kKeyMIMEType, "application/octet-stream");
diff --git a/media/libstagefright/MediaExtractor.cpp b/media/libstagefright/MediaExtractor.cpp
index 8535f52..5e1270a 100644
--- a/media/libstagefright/MediaExtractor.cpp
+++ b/media/libstagefright/MediaExtractor.cpp
@@ -18,11 +18,12 @@
#define LOG_TAG "MediaExtractor"
#include <utils/Log.h>
-#include <media/stagefright/AMRExtractor.h>
+#include "include/AMRExtractor.h"
+#include "include/MP3Extractor.h"
+#include "include/MPEG4Extractor.h"
+
#include <media/stagefright/DataSource.h>
#include <media/stagefright/MediaDefs.h>
-#include <media/stagefright/MP3Extractor.h>
-#include <media/stagefright/MPEG4Extractor.h>
#include <media/stagefright/MediaExtractor.h>
#include <utils/String8.h>
@@ -41,7 +42,7 @@
}
mime = tmp.string();
- LOGI("Autodetected media content as '%s' with confidence %.2f",
+ LOGV("Autodetected media content as '%s' with confidence %.2f",
mime, confidence);
}
diff --git a/media/libstagefright/OMXCodec.cpp b/media/libstagefright/OMXCodec.cpp
index d692820..e0f9563 100644
--- a/media/libstagefright/OMXCodec.cpp
+++ b/media/libstagefright/OMXCodec.cpp
@@ -172,49 +172,35 @@
params->nVersion.s.nStep = 0;
}
-// static
-sp<OMXCodec> OMXCodec::Create(
- const sp<IOMX> &omx,
- const sp<MetaData> &meta, bool createEncoder,
- const sp<MediaSource> &source,
- const char *matchComponentName) {
- const char *mime;
- bool success = meta->findCString(kKeyMIMEType, &mime);
- CHECK(success);
-
- const char *componentName = NULL;
- sp<OMXCodecObserver> observer = new OMXCodecObserver;
- IOMX::node_id node = 0;
- for (int index = 0;; ++index) {
- if (createEncoder) {
- componentName = GetCodec(
- kEncoderInfo, sizeof(kEncoderInfo) / sizeof(kEncoderInfo[0]),
- mime, index);
- } else {
- componentName = GetCodec(
- kDecoderInfo, sizeof(kDecoderInfo) / sizeof(kDecoderInfo[0]),
- mime, index);
- }
-
- if (!componentName) {
- return NULL;
- }
-
- // If a specific codec is requested, skip the non-matching ones.
- if (matchComponentName && strcmp(componentName, matchComponentName)) {
- continue;
- }
-
- LOGV("Attempting to allocate OMX node '%s'", componentName);
-
- status_t err = omx->allocateNode(componentName, observer, &node);
- if (err == OK) {
- LOGV("Successfully allocated OMX node '%s'", componentName);
- break;
- }
+static bool IsSoftwareCodec(const char *componentName) {
+ if (!strncmp("OMX.PV.", componentName, 7)) {
+ return true;
}
+ return false;
+}
+
+static int CompareSoftwareCodecsFirst(
+ const String8 *elem1, const String8 *elem2) {
+ bool isSoftwareCodec1 = IsSoftwareCodec(elem1->string());
+ bool isSoftwareCodec2 = IsSoftwareCodec(elem2->string());
+
+ if (isSoftwareCodec1) {
+ if (isSoftwareCodec2) { return 0; }
+ return -1;
+ }
+
+ if (isSoftwareCodec2) {
+ return 1;
+ }
+
+ return 0;
+}
+
+// static
+uint32_t OMXCodec::getComponentQuirks(const char *componentName) {
uint32_t quirks = 0;
+
if (!strcmp(componentName, "OMX.PV.avcdec")) {
quirks |= kWantsNALFragments;
}
@@ -231,7 +217,6 @@
}
if (!strncmp(componentName, "OMX.qcom.video.decoder.", 23)) {
// XXX Required on P....on only.
- quirks |= kRequiresAllocateBufferOnInputPorts;
quirks |= kRequiresAllocateBufferOnOutputPorts;
}
@@ -245,8 +230,94 @@
quirks |= kRequiresAllocateBufferOnOutputPorts;
}
+ return quirks;
+}
+
+// static
+void OMXCodec::findMatchingCodecs(
+ const char *mime,
+ bool createEncoder, const char *matchComponentName,
+ uint32_t flags,
+ Vector<String8> *matchingCodecs) {
+ matchingCodecs->clear();
+
+ for (int index = 0;; ++index) {
+ const char *componentName;
+
+ if (createEncoder) {
+ componentName = GetCodec(
+ kEncoderInfo,
+ sizeof(kEncoderInfo) / sizeof(kEncoderInfo[0]),
+ mime, index);
+ } else {
+ componentName = GetCodec(
+ kDecoderInfo,
+ sizeof(kDecoderInfo) / sizeof(kDecoderInfo[0]),
+ mime, index);
+ }
+
+ if (!componentName) {
+ break;
+ }
+
+ // If a specific codec is requested, skip the non-matching ones.
+ if (matchComponentName && strcmp(componentName, matchComponentName)) {
+ continue;
+ }
+
+ matchingCodecs->push(String8(componentName));
+ }
+
+ if (flags & kPreferSoftwareCodecs) {
+ matchingCodecs->sort(CompareSoftwareCodecsFirst);
+ }
+}
+
+// static
+sp<OMXCodec> OMXCodec::Create(
+ const sp<IOMX> &omx,
+ const sp<MetaData> &meta, bool createEncoder,
+ const sp<MediaSource> &source,
+ const char *matchComponentName,
+ uint32_t flags) {
+ const char *mime;
+ bool success = meta->findCString(kKeyMIMEType, &mime);
+ CHECK(success);
+
+ Vector<String8> matchingCodecs;
+ findMatchingCodecs(
+ mime, createEncoder, matchComponentName, flags, &matchingCodecs);
+
+ if (matchingCodecs.isEmpty()) {
+ return NULL;
+ }
+
+ sp<OMXCodecObserver> observer = new OMXCodecObserver;
+ IOMX::node_id node = 0;
+ success = false;
+
+ const char *componentName;
+ for (size_t i = 0; i < matchingCodecs.size(); ++i) {
+ componentName = matchingCodecs[i].string();
+
+ LOGV("Attempting to allocate OMX node '%s'", componentName);
+
+ status_t err = omx->allocateNode(componentName, observer, &node);
+ if (err == OK) {
+ LOGV("Successfully allocated OMX node '%s'", componentName);
+
+ success = true;
+ break;
+ }
+ }
+
+ if (!success) {
+ return NULL;
+ }
+
sp<OMXCodec> codec = new OMXCodec(
- omx, node, quirks, createEncoder, mime, componentName,
+ omx, node, getComponentQuirks(componentName),
+ createEncoder, mime, componentName,
source);
observer->setCodec(codec);
@@ -1944,9 +2015,24 @@
return UNKNOWN_ERROR;
}
+ bool seeking = false;
+ int64_t seekTimeUs;
+ if (options && options->getSeekTo(&seekTimeUs)) {
+ seeking = true;
+ }
+
if (mInitialBufferSubmit) {
mInitialBufferSubmit = false;
+ if (seeking) {
+ CHECK(seekTimeUs >= 0);
+ mSeekTimeUs = seekTimeUs;
+
+ // There's no reason to trigger the code below, there's
+ // nothing to flush yet.
+ seeking = false;
+ }
+
drainInputBuffers();
if (mState == EXECUTING) {
@@ -1956,8 +2042,7 @@
}
}
- int64_t seekTimeUs;
- if (options && options->getSeekTo(&seekTimeUs)) {
+ if (seeking) {
CODEC_LOGV("seeking to %lld us (%.2f secs)", seekTimeUs, seekTimeUs / 1E6);
mSignalledEOS = false;
diff --git a/media/libstagefright/SampleTable.cpp b/media/libstagefright/SampleTable.cpp
index 5c5bb4d..3eed52a 100644
--- a/media/libstagefright/SampleTable.cpp
+++ b/media/libstagefright/SampleTable.cpp
@@ -575,5 +575,52 @@
return OK;
}
+status_t SampleTable::findThumbnailSample(uint32_t *sample_index) {
+ if (mSyncSampleOffset < 0) {
+ // All samples are sync-samples.
+ *sample_index = 0;
+ return OK;
+ }
+
+ uint32_t bestSampleIndex = 0;
+ size_t maxSampleSize = 0;
+
+ static const size_t kMaxNumSyncSamplesToScan = 20;
+
+ // Consider the first kMaxNumSyncSamplesToScan sync samples and
+ // pick the one with the largest (compressed) size as the thumbnail.
+
+ size_t numSamplesToScan = mNumSyncSamples;
+ if (numSamplesToScan > kMaxNumSyncSamplesToScan) {
+ numSamplesToScan = kMaxNumSyncSamplesToScan;
+ }
+
+ for (size_t i = 0; i < numSamplesToScan; ++i) {
+ uint32_t x;
+ if (mDataSource->read_at(
+ mSyncSampleOffset + 8 + i * 4, &x, 4) != 4) {
+ return ERROR_IO;
+ }
+ x = ntohl(x);
+ --x;
+
+ // Now x is a sample index.
+ size_t sampleSize;
+ status_t err = getSampleSize(x, &sampleSize);
+ if (err != OK) {
+ return err;
+ }
+
+ if (i == 0 || sampleSize > maxSampleSize) {
+ bestSampleIndex = x;
+ maxSampleSize = sampleSize;
+ }
+ }
+
+ *sample_index = bestSampleIndex;
+
+ return OK;
+}
+
} // namespace android
diff --git a/include/media/stagefright/AMRExtractor.h b/media/libstagefright/include/AMRExtractor.h
similarity index 94%
rename from include/media/stagefright/AMRExtractor.h
rename to media/libstagefright/include/AMRExtractor.h
index c8710d3..debf006 100644
--- a/include/media/stagefright/AMRExtractor.h
+++ b/media/libstagefright/include/AMRExtractor.h
@@ -30,7 +30,7 @@
virtual size_t countTracks();
virtual sp<MediaSource> getTrack(size_t index);
- virtual sp<MetaData> getTrackMetaData(size_t index);
+ virtual sp<MetaData> getTrackMetaData(size_t index, uint32_t flags);
static sp<MetaData> makeAMRFormat(bool isWide);
diff --git a/include/media/stagefright/MP3Extractor.h b/media/libstagefright/include/MP3Extractor.h
similarity index 94%
rename from include/media/stagefright/MP3Extractor.h
rename to media/libstagefright/include/MP3Extractor.h
index 11ba01d..074973b 100644
--- a/include/media/stagefright/MP3Extractor.h
+++ b/media/libstagefright/include/MP3Extractor.h
@@ -32,7 +32,7 @@
virtual size_t countTracks();
virtual sp<MediaSource> getTrack(size_t index);
- virtual sp<MetaData> getTrackMetaData(size_t index);
+ virtual sp<MetaData> getTrackMetaData(size_t index, uint32_t flags);
protected:
virtual ~MP3Extractor();
diff --git a/include/media/stagefright/MPEG4Extractor.h b/media/libstagefright/include/MPEG4Extractor.h
similarity index 93%
rename from include/media/stagefright/MPEG4Extractor.h
rename to media/libstagefright/include/MPEG4Extractor.h
index 932e30f..ce4736d 100644
--- a/include/media/stagefright/MPEG4Extractor.h
+++ b/media/libstagefright/include/MPEG4Extractor.h
@@ -33,7 +33,7 @@
size_t countTracks();
sp<MediaSource> getTrack(size_t index);
- sp<MetaData> getTrackMetaData(size_t index);
+ sp<MetaData> getTrackMetaData(size_t index, uint32_t flags);
protected:
virtual ~MPEG4Extractor();
@@ -44,6 +44,7 @@
sp<MetaData> meta;
uint32_t timescale;
sp<SampleTable> sampleTable;
+ bool includes_expensive_metadata;
};
sp<DataSource> mDataSource;
diff --git a/media/libstagefright/include/SampleTable.h b/media/libstagefright/include/SampleTable.h
index 34a0649..ead3431 100644
--- a/media/libstagefright/include/SampleTable.h
+++ b/media/libstagefright/include/SampleTable.h
@@ -75,6 +75,8 @@
status_t findClosestSyncSample(
uint32_t start_sample_index, uint32_t *sample_index);
+ status_t findThumbnailSample(uint32_t *sample_index);
+
protected:
~SampleTable();
diff --git a/media/libstagefright/omx/OMXNodeInstance.cpp b/media/libstagefright/omx/OMXNodeInstance.cpp
index d277587..d5d45d7 100644
--- a/media/libstagefright/omx/OMXNodeInstance.cpp
+++ b/media/libstagefright/omx/OMXNodeInstance.cpp
@@ -107,8 +107,6 @@
}
status_t OMXNodeInstance::freeNode() {
- Mutex::Autolock autoLock(mLock);
-
OMX_ERRORTYPE err = OMX_MasterFreeHandle(mHandle);
mHandle = NULL;
@@ -119,7 +117,7 @@
mOwner->invalidateNodeID(mNodeID);
mNodeID = NULL;
- LOGI("OMXNodeInstance going away.");
+ LOGV("OMXNodeInstance going away.");
delete this;
return StatusFromOMXError(err);
diff --git a/services/java/com/android/server/AppWidgetService.java b/services/java/com/android/server/AppWidgetService.java
index f8b8ecc..6bf7102 100644
--- a/services/java/com/android/server/AppWidgetService.java
+++ b/services/java/com/android/server/AppWidgetService.java
@@ -51,6 +51,7 @@
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;
+import java.util.Locale;
import java.util.HashMap;
import java.util.HashSet;
@@ -105,6 +106,7 @@
}
Context mContext;
+ Locale mLocale;
PackageManager mPackageManager;
AlarmManager mAlarmManager;
ArrayList<Provider> mInstalledProviders = new ArrayList<Provider>();
@@ -131,6 +133,11 @@
mContext.registerReceiver(mBroadcastReceiver,
new IntentFilter(Intent.ACTION_BOOT_COMPLETED), null, null);
+ // Register for configuration changes so we can update the names
+ // of the widgets when the locale changes.
+ mContext.registerReceiver(mBroadcastReceiver,
+ new IntentFilter(Intent.ACTION_CONFIGURATION_CHANGED), null, null);
+
// Register for broadcasts about package install, etc., so we can
// update the provider list.
IntentFilter filter = new IntentFilter();
@@ -1046,6 +1053,22 @@
//Log.d(TAG, "received " + action);
if (Intent.ACTION_BOOT_COMPLETED.equals(action)) {
sendInitialBroadcasts();
+ } else if (Intent.ACTION_CONFIGURATION_CHANGED.equals(action)) {
+ Locale revised = Locale.getDefault();
+ if (revised == null || mLocale == null ||
+ !(revised.equals(mLocale))) {
+ mLocale = revised;
+
+ synchronized (mAppWidgetIds) {
+ int N = mInstalledProviders.size();
+ for (int i=N-1; i>=0; i--) {
+ Provider p = mInstalledProviders.get(i);
+ String pkgName = p.info.provider.getPackageName();
+ updateProvidersForPackageLocked(pkgName);
+ }
+ saveStateLocked();
+ }
+ }
} else {
Uri uri = intent.getData();
if (uri == null) {
diff --git a/services/java/com/android/server/InputMethodManagerService.java b/services/java/com/android/server/InputMethodManagerService.java
index 1da2b47..e2e0ba9 100644
--- a/services/java/com/android/server/InputMethodManagerService.java
+++ b/services/java/com/android/server/InputMethodManagerService.java
@@ -41,6 +41,7 @@
import android.content.DialogInterface.OnCancelListener;
import android.content.Intent;
import android.content.ServiceConnection;
+import android.content.pm.ApplicationInfo;
import android.content.pm.PackageManager;
import android.content.pm.ResolveInfo;
import android.content.pm.ServiceInfo;
@@ -366,16 +367,7 @@
// Uh oh, current input method is no longer around!
// Pick another one...
Log.i(TAG, "Current input method removed: " + curInputMethodId);
- List<InputMethodInfo> enabled = getEnabledInputMethodListLocked();
- if (enabled != null && enabled.size() > 0) {
- changed = true;
- curIm = enabled.get(0);
- curInputMethodId = curIm.getId();
- Log.i(TAG, "Switching to: " + curInputMethodId);
- Settings.Secure.putString(mContext.getContentResolver(),
- Settings.Secure.DEFAULT_INPUT_METHOD,
- curInputMethodId);
- } else if (curIm != null) {
+ if (!chooseNewDefaultIME()) {
changed = true;
curIm = null;
curInputMethodId = "";
@@ -389,16 +381,7 @@
} else if (curIm == null) {
// We currently don't have a default input method... is
// one now available?
- List<InputMethodInfo> enabled = getEnabledInputMethodListLocked();
- if (enabled != null && enabled.size() > 0) {
- changed = true;
- curIm = enabled.get(0);
- curInputMethodId = curIm.getId();
- Log.i(TAG, "New default input method: " + curInputMethodId);
- Settings.Secure.putString(mContext.getContentResolver(),
- Settings.Secure.DEFAULT_INPUT_METHOD,
- curInputMethodId);
- }
+ changed = chooseNewDefaultIME();
}
if (changed) {
@@ -1369,6 +1352,23 @@
return false;
}
+ private boolean isSystemIme(InputMethodInfo inputMethod) {
+ return (inputMethod.getServiceInfo().applicationInfo.flags
+ & ApplicationInfo.FLAG_SYSTEM) != 0;
+ }
+
+ private boolean chooseNewDefaultIME() {
+ List<InputMethodInfo> enabled = getEnabledInputMethodListLocked();
+ if (enabled != null && enabled.size() > 0) {
+ Settings.Secure.putString(mContext.getContentResolver(),
+ Settings.Secure.DEFAULT_INPUT_METHOD,
+ enabled.get(0).getId());
+ return true;
+ }
+
+ return false;
+ }
+
void buildInputMethodListLocked(ArrayList<InputMethodInfo> list,
HashMap<String, InputMethodInfo> map) {
list.clear();
@@ -1399,6 +1399,11 @@
list.add(p);
map.put(p.getId(), p);
+ // System IMEs are enabled by default
+ if (isSystemIme(p)) {
+ setInputMethodEnabled(p.getId(), true);
+ }
+
if (DEBUG) {
Log.d(TAG, "Found a third-party input method " + p);
}
@@ -1409,6 +1414,14 @@
Log.w(TAG, "Unable to load input method " + compName, e);
}
}
+
+ String defaultIme = Settings.Secure.getString(mContext
+ .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
+ if (!map.containsKey(defaultIme)) {
+ if (chooseNewDefaultIME()) {
+ updateFromSettingsLocked();
+ }
+ }
}
// ----------------------------------------------------------------------
diff --git a/services/java/com/android/server/PowerManagerService.java b/services/java/com/android/server/PowerManagerService.java
index 9b54a70..b0c5950 100644
--- a/services/java/com/android/server/PowerManagerService.java
+++ b/services/java/com/android/server/PowerManagerService.java
@@ -156,6 +156,7 @@
private int mProximityCount = 0;
private int mPowerState;
private boolean mOffBecauseOfUser;
+ private boolean mAnimatingScreenOff;
private int mUserState;
private boolean mKeyboardVisible = false;
private boolean mUserActivityAllowed = true;
@@ -1225,6 +1226,7 @@
Log.d(TAG,
"preventScreenOn: turning on after a prior preventScreenOn(true)!");
}
+ mAnimatingScreenOff = false;
int err = setScreenStateLocked(true);
if (err != 0) {
Log.w(TAG, "preventScreenOn: error from setScreenStateLocked(): " + err);
@@ -1386,6 +1388,7 @@
reallyTurnScreenOn = false;
}
if (reallyTurnScreenOn) {
+ mAnimatingScreenOff = false;
err = setScreenStateLocked(true);
long identity = Binder.clearCallingIdentity();
try {
@@ -1427,6 +1430,7 @@
if (!mScreenBrightness.animating) {
err = screenOffFinishedAnimatingLocked(becauseOfUser);
} else {
+ mAnimatingScreenOff = true;
mOffBecauseOfUser = becauseOfUser;
err = 0;
mLastTouchDown = 0;
@@ -1444,6 +1448,7 @@
mTotalTouchDownTime, mTouchCycles);
mLastTouchDown = 0;
int err = setScreenStateLocked(false);
+ mAnimatingScreenOff = false;
if (mScreenOnStartTime != 0) {
mScreenOnTime += SystemClock.elapsedRealtime() - mScreenOnStartTime;
mScreenOnStartTime = 0;
@@ -1816,7 +1821,9 @@
return;
}
-
+ if (mAnimatingScreenOff) {
+ return;
+ }
if (false) {
if (((mPokey & POKE_LOCK_IGNORE_CHEEK_EVENTS) != 0)) {
Log.d(TAG, "userActivity !!!");//, new RuntimeException());
@@ -2000,12 +2007,14 @@
if (mSpew) {
Log.d(TAG, "setKeyboardVisibility: " + visible);
}
- mKeyboardVisible = visible;
- // don't signal user activity if the screen is off; other code
- // will take care of turning on due to a true change to the lid
- // switch and synchronized with the lock screen.
- if ((mPowerState & SCREEN_ON_BIT) != 0) {
- userActivity(SystemClock.uptimeMillis(), false, BUTTON_EVENT, true);
+ if (mKeyboardVisible != visible) {
+ mKeyboardVisible = visible;
+ // don't signal user activity if the screen is off; other code
+ // will take care of turning on due to a true change to the lid
+ // switch and synchronized with the lock screen.
+ if ((mPowerState & SCREEN_ON_BIT) != 0) {
+ userActivity(SystemClock.uptimeMillis(), false, BUTTON_EVENT, true);
+ }
}
}
}
diff --git a/services/java/com/android/server/WindowManagerService.java b/services/java/com/android/server/WindowManagerService.java
index 9caa386..cd6a371 100644
--- a/services/java/com/android/server/WindowManagerService.java
+++ b/services/java/com/android/server/WindowManagerService.java
@@ -63,6 +63,7 @@
import android.graphics.Region;
import android.os.BatteryStats;
import android.os.Binder;
+import android.os.Bundle;
import android.os.Debug;
import android.os.Handler;
import android.os.IBinder;
@@ -432,8 +433,6 @@
int mWallpaperAnimLayerAdjustment;
float mLastWallpaperX = -1;
float mLastWallpaperY = -1;
- // Lock for waiting for the wallpaper.
- final Object mWaitingOnWallpaperLock = new Object();
// This is set when we are waiting for a wallpaper to tell us it is done
// changing its scroll position.
WindowState mWaitingOnWallpaper;
@@ -1604,34 +1603,30 @@
+ wallpaperWin + " x=" + wallpaperWin.mWallpaperX
+ " y=" + wallpaperWin.mWallpaperY);
if (sync) {
- synchronized (mWaitingOnWallpaperLock) {
- mWaitingOnWallpaper = wallpaperWin;
- }
+ mWaitingOnWallpaper = wallpaperWin;
}
wallpaperWin.mClient.dispatchWallpaperOffsets(
wallpaperWin.mWallpaperX, wallpaperWin.mWallpaperY, sync);
if (sync) {
- synchronized (mWaitingOnWallpaperLock) {
- if (mWaitingOnWallpaper != null) {
- long start = SystemClock.uptimeMillis();
- if ((mLastWallpaperTimeoutTime+WALLPAPER_TIMEOUT_RECOVERY)
- < start) {
- try {
- if (DEBUG_WALLPAPER) Log.v(TAG,
- "Waiting for offset complete...");
- mWaitingOnWallpaperLock.wait(WALLPAPER_TIMEOUT);
- } catch (InterruptedException e) {
- }
- if (DEBUG_WALLPAPER) Log.v(TAG, "Offset complete!");
- if ((start+WALLPAPER_TIMEOUT)
- < SystemClock.uptimeMillis()) {
- Log.i(TAG, "Timeout waiting for wallpaper to offset: "
- + wallpaperWin);
- mLastWallpaperTimeoutTime = start;
- }
+ if (mWaitingOnWallpaper != null) {
+ long start = SystemClock.uptimeMillis();
+ if ((mLastWallpaperTimeoutTime+WALLPAPER_TIMEOUT_RECOVERY)
+ < start) {
+ try {
+ if (DEBUG_WALLPAPER) Log.v(TAG,
+ "Waiting for offset complete...");
+ mWindowMap.wait(WALLPAPER_TIMEOUT);
+ } catch (InterruptedException e) {
}
- mWaitingOnWallpaper = null;
+ if (DEBUG_WALLPAPER) Log.v(TAG, "Offset complete!");
+ if ((start+WALLPAPER_TIMEOUT)
+ < SystemClock.uptimeMillis()) {
+ Log.i(TAG, "Timeout waiting for wallpaper to offset: "
+ + wallpaperWin);
+ mLastWallpaperTimeoutTime = start;
+ }
}
+ mWaitingOnWallpaper = null;
}
}
} catch (RemoteException e) {
@@ -1642,11 +1637,11 @@
}
void wallpaperOffsetsComplete(IBinder window) {
- synchronized (mWaitingOnWallpaperLock) {
+ synchronized (mWindowMap) {
if (mWaitingOnWallpaper != null &&
mWaitingOnWallpaper.mClient.asBinder() == window) {
mWaitingOnWallpaper = null;
- mWaitingOnWallpaperLock.notifyAll();
+ mWindowMap.notifyAll();
}
}
}
@@ -2196,6 +2191,47 @@
}
}
+ void wallpaperCommandComplete(IBinder window, Bundle result) {
+ synchronized (mWindowMap) {
+ if (mWaitingOnWallpaper != null &&
+ mWaitingOnWallpaper.mClient.asBinder() == window) {
+ mWaitingOnWallpaper = null;
+ mWindowMap.notifyAll();
+ }
+ }
+ }
+
+ public Bundle sendWindowWallpaperCommandLocked(WindowState window,
+ String action, int x, int y, int z, Bundle extras, boolean sync) {
+ if (window == mWallpaperTarget || window == mLowerWallpaperTarget
+ || window == mUpperWallpaperTarget) {
+ boolean doWait = sync;
+ int curTokenIndex = mWallpaperTokens.size();
+ while (curTokenIndex > 0) {
+ curTokenIndex--;
+ WindowToken token = mWallpaperTokens.get(curTokenIndex);
+ int curWallpaperIndex = token.windows.size();
+ while (curWallpaperIndex > 0) {
+ curWallpaperIndex--;
+ WindowState wallpaper = token.windows.get(curWallpaperIndex);
+ try {
+ wallpaper.mClient.dispatchWallpaperCommand(action,
+ x, y, z, extras, sync);
+ // We only want to be synchronous with one wallpaper.
+ sync = false;
+ } catch (RemoteException e) {
+ }
+ }
+ }
+
+ if (doWait) {
+ // XXX Need to wait for result.
+ }
+ }
+
+ return null;
+ }
+
public int relayoutWindow(Session session, IWindow client,
WindowManager.LayoutParams attrs, int requestedWidth,
int requestedHeight, int viewVisibility, boolean insetsPending,
@@ -6227,6 +6263,13 @@
lt.sample("2 got event ", System.nanoTime() - ev.whenNano);
}
+ if (lastKey != null && !mPolicy.allowKeyRepeat()) {
+ // cancel key repeat at the request of the policy.
+ lastKey = null;
+ downTime = 0;
+ lastKeyTime = curTime;
+ nextKeyTime = curTime + LONG_WAIT;
+ }
try {
if (ev != null) {
curTime = SystemClock.uptimeMillis();
@@ -6558,6 +6601,24 @@
WindowManagerService.this.wallpaperOffsetsComplete(window);
}
+ public Bundle sendWallpaperCommand(IBinder window, String action, int x, int y,
+ int z, Bundle extras, boolean sync) {
+ synchronized(mWindowMap) {
+ long ident = Binder.clearCallingIdentity();
+ try {
+ return sendWindowWallpaperCommandLocked(
+ windowForClientLocked(this, window),
+ action, x, y, z, extras, sync);
+ } finally {
+ Binder.restoreCallingIdentity(ident);
+ }
+ }
+ }
+
+ public void wallpaperCommandComplete(IBinder window, Bundle result) {
+ WindowManagerService.this.wallpaperCommandComplete(window, result);
+ }
+
void windowAddedLocked() {
if (mSurfaceSession == null) {
if (localLOGV) Log.v(
diff --git a/telephony/java/android/telephony/SmsManager.java b/telephony/java/android/telephony/SmsManager.java
index 80de074..3122722 100644
--- a/telephony/java/android/telephony/SmsManager.java
+++ b/telephony/java/android/telephony/SmsManager.java
@@ -360,7 +360,9 @@
// List contains all records, including "free" records (null)
if (data != null) {
SmsMessage sms = SmsMessage.createFromEfRecord(i+1, data.getBytes());
- messages.add(sms);
+ if (sms != null) {
+ messages.add(sms);
+ }
}
}
}
diff --git a/telephony/java/android/telephony/SmsMessage.java b/telephony/java/android/telephony/SmsMessage.java
index 7a10512..b8ea4c0 100644
--- a/telephony/java/android/telephony/SmsMessage.java
+++ b/telephony/java/android/telephony/SmsMessage.java
@@ -218,7 +218,7 @@
index, data);
}
- return new SmsMessage(wrappedMessage);
+ return wrappedMessage != null ? new SmsMessage(wrappedMessage) : null;
}
/**
diff --git a/telephony/java/android/telephony/cdma/CdmaCellLocation.java b/telephony/java/android/telephony/cdma/CdmaCellLocation.java
index 676fba7..7ef7747 100644
--- a/telephony/java/android/telephony/cdma/CdmaCellLocation.java
+++ b/telephony/java/android/telephony/cdma/CdmaCellLocation.java
@@ -24,19 +24,35 @@
*/
public class CdmaCellLocation extends CellLocation {
private int mBaseStationId = -1;
- private int mBaseStationLatitude = -1;
- private int mBaseStationLongitude = -1;
+
+ /**
+ * Latitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0.
+ * It is represented in units of 0.25 seconds and ranges from -1296000
+ * to 1296000, both values inclusive (corresponding to a range of -90
+ * to +90 degrees). Integer.MAX_VALUE is considered invalid value.
+ */
+ private int mBaseStationLatitude = Integer.MAX_VALUE;
+
+ /**
+ * Longitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0.
+ * It is represented in units of 0.25 seconds and ranges from -2592000
+ * to 2592000, both values inclusive (corresponding to a range of -180
+ * to +180 degrees). Integer.MAX_VALUE is considered invalid value.
+ */
+ private int mBaseStationLongitude = Integer.MAX_VALUE;
+
private int mSystemId = -1;
private int mNetworkId = -1;
/**
* Empty constructor.
- * Initializes the BID, SID, NID and base station latitude and longitude to -1.
+ * Initializes the BID, SID, NID and base station latitude and longitude
+ * to invalid values.
*/
public CdmaCellLocation() {
this.mBaseStationId = -1;
- this.mBaseStationLatitude = -1;
- this.mBaseStationLongitude = -1;
+ this.mBaseStationLatitude = Integer.MAX_VALUE;
+ this.mBaseStationLongitude = Integer.MAX_VALUE;
this.mSystemId = -1;
this.mNetworkId = -1;
}
@@ -60,14 +76,14 @@
}
/**
- * @return cdma base station latitude, -1 if unknown
+ * @return cdma base station latitude, Integer.MAX_VALUE if unknown
*/
public int getBaseStationLatitude() {
return this.mBaseStationLatitude;
}
/**
- * @return cdma base station longitude, -1 if unknown
+ * @return cdma base station longitude, Integer.MAX_VALUE if unknown
*/
public int getBaseStationLongitude() {
return this.mBaseStationLongitude;
@@ -88,12 +104,12 @@
}
/**
- * Invalidate this object. The cell location data is set to -1.
+ * Invalidate this object. The cell location data is set to invalid values.
*/
public void setStateInvalid() {
this.mBaseStationId = -1;
- this.mBaseStationLatitude = -1;
- this.mBaseStationLongitude = -1;
+ this.mBaseStationLatitude = Integer.MAX_VALUE;
+ this.mBaseStationLongitude = Integer.MAX_VALUE;
this.mSystemId = -1;
this.mNetworkId = -1;
}
diff --git a/telephony/java/com/android/internal/telephony/CommandsInterface.java b/telephony/java/com/android/internal/telephony/CommandsInterface.java
index 5777cad..1d9f10a 100644
--- a/telephony/java/com/android/internal/telephony/CommandsInterface.java
+++ b/telephony/java/com/android/internal/telephony/CommandsInterface.java
@@ -148,6 +148,7 @@
static final int CDMA_SMS_FAIL_CAUSE_INVALID_TELESERVICE_ID = 4;
static final int CDMA_SMS_FAIL_CAUSE_RESOURCE_SHORTAGE = 35;
static final int CDMA_SMS_FAIL_CAUSE_OTHER_TERMINAL_PROBLEM = 39;
+ static final int CDMA_SMS_FAIL_CAUSE_ENCODING_PROBLEM = 96;
//***** Methods
diff --git a/telephony/java/com/android/internal/telephony/cdma/CdmaSMSDispatcher.java b/telephony/java/com/android/internal/telephony/cdma/CdmaSMSDispatcher.java
index d895cd4..c16b04d 100644
--- a/telephony/java/com/android/internal/telephony/cdma/CdmaSMSDispatcher.java
+++ b/telephony/java/com/android/internal/telephony/cdma/CdmaSMSDispatcher.java
@@ -481,7 +481,7 @@
return CommandsInterface.CDMA_SMS_FAIL_CAUSE_INVALID_TELESERVICE_ID;
case Intents.RESULT_SMS_GENERIC_ERROR:
default:
- return CommandsInterface.CDMA_SMS_FAIL_CAUSE_OTHER_TERMINAL_PROBLEM;
+ return CommandsInterface.CDMA_SMS_FAIL_CAUSE_ENCODING_PROBLEM;
}
}
}
diff --git a/telephony/java/com/android/internal/telephony/cdma/CdmaServiceStateTracker.java b/telephony/java/com/android/internal/telephony/cdma/CdmaServiceStateTracker.java
index ec30f5a..03acf5c 100644
--- a/telephony/java/com/android/internal/telephony/cdma/CdmaServiceStateTracker.java
+++ b/telephony/java/com/android/internal/telephony/cdma/CdmaServiceStateTracker.java
@@ -350,29 +350,35 @@
if (ar.exception == null) {
String states[] = (String[])ar.result;
int baseStationId = -1;
- int baseStationLongitude = -1;
- int baseStationLatitude = -1;
+ int baseStationLatitude = Integer.MAX_VALUE;
+ int baseStationLongitude = Integer.MAX_VALUE;
+ int systemId = -1;
+ int networkId = -1;
- int baseStationData[] = {
- -1, // baseStationId
- -1, // baseStationLatitude
- -1 // baseStationLongitude
- };
-
- if (states.length == 3) {
- for(int i = 0; i < states.length; i++) {
- try {
- if (states[i] != null && states[i].length() > 0) {
- baseStationData[i] = Integer.parseInt(states[i], 16);
- }
- } catch (NumberFormatException ex) {
- Log.w(LOG_TAG, "error parsing cell location data: " + ex);
+ if (states.length > 9) {
+ try {
+ if (states[4] != null) {
+ baseStationId = Integer.parseInt(states[4]);
}
+ if (states[5] != null) {
+ baseStationLatitude = Integer.parseInt(states[5]);
+ }
+ if (states[6] != null) {
+ baseStationLongitude = Integer.parseInt(states[6]);
+ }
+ if (states[8] != null) {
+ systemId = Integer.parseInt(states[8]);
+ }
+ if (states[9] != null) {
+ networkId = Integer.parseInt(states[9]);
+ }
+ } catch (NumberFormatException ex) {
+ Log.w(LOG_TAG, "error parsing cell location data: " + ex);
}
}
- cellLoc.setCellLocationData(baseStationData[0],
- baseStationData[1], baseStationData[2]);
+ cellLoc.setCellLocationData(baseStationId, baseStationLatitude,
+ baseStationLongitude, systemId, networkId);
phone.notifyLocationChanged();
}
@@ -640,8 +646,8 @@
int registrationState = 4; //[0] registrationState
int radioTechnology = -1; //[3] radioTechnology
int baseStationId = -1; //[4] baseStationId
- int baseStationLatitude = -1; //[5] baseStationLatitude
- int baseStationLongitude = -1; //[6] baseStationLongitude
+ int baseStationLatitude = Integer.MAX_VALUE; //[5] baseStationLatitude
+ int baseStationLongitude = Integer.MAX_VALUE; //[6] baseStationLongitude
int cssIndicator = 0; //[7] init with 0, because it is treated as a boolean
int systemId = 0; //[8] systemId
int networkId = 0; //[9] networkId
@@ -652,20 +658,43 @@
if (states.length == 14) {
try {
- registrationState = Integer.parseInt(states[0]);
- radioTechnology = Integer.parseInt(states[3]);
- baseStationId = Integer.parseInt(states[4]);
- baseStationLatitude = Integer.parseInt(states[5], 16);
- baseStationLongitude = Integer.parseInt(states[6], 16);
- cssIndicator = Integer.parseInt(states[7]);
- systemId = Integer.parseInt(states[8]);
- networkId = Integer.parseInt(states[9]);
- roamingIndicator = Integer.parseInt(states[10]);
- systemIsInPrl = Integer.parseInt(states[11]);
- defaultRoamingIndicator = Integer.parseInt(states[12]);
- reasonForDenial = Integer.parseInt(states[13]);
- }
- catch(NumberFormatException ex) {
+ if (states[0] != null) {
+ registrationState = Integer.parseInt(states[0]);
+ }
+ if (states[3] != null) {
+ radioTechnology = Integer.parseInt(states[3]);
+ }
+ if (states[4] != null) {
+ baseStationId = Integer.parseInt(states[4]);
+ }
+ if (states[5] != null) {
+ baseStationLatitude = Integer.parseInt(states[5]);
+ }
+ if (states[6] != null) {
+ baseStationLongitude = Integer.parseInt(states[6]);
+ }
+ if (states[7] != null) {
+ cssIndicator = Integer.parseInt(states[7]);
+ }
+ if (states[8] != null) {
+ systemId = Integer.parseInt(states[8]);
+ }
+ if (states[9] != null) {
+ networkId = Integer.parseInt(states[9]);
+ }
+ if (states[10] != null) {
+ roamingIndicator = Integer.parseInt(states[10]);
+ }
+ if (states[11] != null) {
+ systemIsInPrl = Integer.parseInt(states[11]);
+ }
+ if (states[12] != null) {
+ defaultRoamingIndicator = Integer.parseInt(states[12]);
+ }
+ if (states[13] != null) {
+ reasonForDenial = Integer.parseInt(states[13]);
+ }
+ } catch (NumberFormatException ex) {
Log.w(LOG_TAG, "error parsing RegistrationState: " + ex);
}
} else {
diff --git a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java
index d28a151..f0223e8 100644
--- a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java
+++ b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java
@@ -36,6 +36,7 @@
import android.graphics.Region;
import android.graphics.Typeface;
import android.graphics.drawable.Drawable;
+import android.os.Bundle;
import android.os.Handler;
import android.os.IBinder;
import android.os.Looper;
@@ -1069,6 +1070,18 @@
}
@SuppressWarnings("unused")
+ public Bundle sendWallpaperCommand(IBinder window, String action, int x, int y,
+ int z, Bundle extras, boolean sync) {
+ // pass for now.
+ return null;
+ }
+
+ @SuppressWarnings("unused")
+ public void wallpaperCommandComplete(IBinder window, Bundle result) {
+ // pass for now.
+ }
+
+ @SuppressWarnings("unused")
public void closeSystemDialogs(String reason) {
// pass for now.
}
@@ -1132,6 +1145,12 @@
}
@SuppressWarnings("unused")
+ public void dispatchWallpaperCommand(String action, int x, int y,
+ int z, Bundle extras, boolean sync) {
+ // pass for now.
+ }
+
+ @SuppressWarnings("unused")
public void closeSystemDialogs(String reason) {
// pass for now.
}